ホームページ  >  記事  >  バックエンド開発  >  PHP で SimpleXML を使用して、複数の名前空間を持つ XML を解析するにはどうすればよいでしょうか?

PHP で SimpleXML を使用して、複数の名前空間を持つ XML を解析するにはどうすればよいでしょうか?

Susan Sarandon
Susan Sarandonオリジナル
2024-11-07 06:22:03178ブラウズ

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。