使用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中文網其他相關文章!