PHP에서 SimpleXML을 사용하여 여러 네임스페이스가 있는 XML을 어떻게 구문 분석할 수 있나요?

Susan Sarandon
풀어 주다: 2024-11-07 06:22:03
원래의
178명이 탐색했습니다.

How can you parse XML with multiple namespaces using SimpleXML in PHP?

SimpleXML을 사용하여 여러 네임스페이스가 있는 XML 구문 분석

SimpleXML로 작업할 때 여러 네임스페이스가 있는 XML을 구문 분석하는 작업이 어려울 수 있습니다. 이는 SimpleXML이 다른 네임스페이스의 요소에 액세스하려면 네임스페이스의 명시적 선언이 필요하기 때문입니다.

여러 네임스페이스가 있는 다음 XML을 고려하세요.

<code class="xml"><soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Header>
        <eb:MessageHeader xmlns:eb="http://www.ebxml.org/namespaces/messageHeader" eb:version="1.0" soap-env:mustUnderstand="1">
            <eb:From>
                <eb:PartyId eb:type="URI">wscompany.com</eb:PartyId>
            </eb:From>
            <eb:To>
                <eb:PartyId eb:type="URI">mysite.com</eb:PartyId>
            </eb:To>
            <eb:CPAId>something</eb:CPAId>
            <eb:ConversationId>moredata.com</eb:ConversationId>
            <eb:Service eb:type="compXML">theservice</eb:Service>
            <eb:Action>theaction</eb:Action>
            <eb:MessageData>
                <eb:MessageId>a certain messageid</eb:MessageId>
                <eb:Timestamp>2009-04-11T18:43:58</eb:Timestamp>
                <eb:RefToMessageId>mid:areference</eb:RefToMessageId>
            </eb:MessageData>
        </eb:MessageHeader>
        <wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/12/secext">
            <wsse:BinarySecurityToken valueType="String" EncodingType="wsse:Base64Binary">an impresive binary security toekn</wsse:BinarySecurityToken>
        </wsse:Security>
    </soap-env:Header>
    <soap-env:Body>
        <SessionCreateRS xmlns="http://www.opentravel.org/OTA/2002/11" version="1" status="Approved">
            <ConversationId>the goodbye token</ConversationId>
        </SessionCreateRS>
    </soap-env:Body>
</soap-env:Envelope></code>
로그인 후 복사

네임스페이스를 등록하지 않고 SimpleXML을 사용하여 이 XML을 로드하려고 합니다. 결과적으로 첫 번째 네임스페이스만 인식됩니다. 이를 올바르게 구문 분석하려면 네임스페이스를 등록하고 이를 설명하는 XPath 표현식을 생성해야 합니다.

<code class="php">$xml = simplexml_load_string($res);
$xml->registerXPathNamespace('soap-env', 'http://schemas.xmlsoap.org/soap/envelope/');
$xml->registerXPathNamespace('eb', 'http://www.ebxml.org/namespaces/messageHeader');
$xml->registerXPathNamespace('wsse', 'http://schemas.xmlsoap.org/ws/2002/12/secext');

// Getting the CPAId using XPath
$cpaId = $xml->xpath('//eb:CPAId');
var_export($cpaId); // Outputs: [SimpleXMLElement]

// Getting the BinarySecurityToken using XPath
$token = $xml->xpath('//wsse:BinarySecurityToken');
var_export($token); // Outputs: [SimpleXMLElement]</code>
로그인 후 복사

이 업데이트된 코드는 네임스페이스를 등록하고 XPath 표현식을 사용하여 다양한 네임스페이스의 요소에 액세스하므로 다음을 수행할 수 있습니다. 여러 네임스페이스가 있음에도 불구하고 XML을 효과적으로 구문 분석합니다.

위 내용은 PHP에서 SimpleXML을 사용하여 여러 네임스페이스가 있는 XML을 어떻게 구문 분석할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!