我是使用 xml 和 xsd 东西的新手。我正在尝试使用 Guzzle 创建一个 Web 服务客户端:
http://guzzlephp.org/index.html
按照本教程,我能够创建一个非常基本的客户端和 1 个命令:
http://guzzlephp.org/tour/building_services.html
我遇到的问题是如何将返回的 XML 转换为更有用的格式。我正在使用的 Web 服务(及其文档和 xsd)可以在这里找到:
http://www.epo.org/searching/free/ops.html
我得到一个 SimpleXMLElement。假设 XML 的以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/2.6.2/style/exchange.xsl"?>
<ops:world-patent-data xmlns:ops="http://ops.epo.org" xmlns="http://www.epo.org/exchange" xmlns:ccd="http://www.epo.org/ccd" xmlns:xlink="http://www.w3.org/1999/xlink">
<ops:meta name="elapsed-time" value="30"/>
<exchange-documents>
<exchange-document system="ops.epo.org" family-id="19768124" country="EP" doc-number="1000000" kind="A1">
<bibliographic-data>
<publication-reference>
<document-id document-id-type="docdb">
<country>EP</country>
<doc-number>1000000</doc-number>
<kind>A1</kind>
<date>20000517</date>
</document-id>
<document-id document-id-type="epodoc">
<doc-number>EP1000000</doc-number>
<date>20000517</date>
</document-id>
</publication-reference>
<!-- a lot of content snipped -->
</bibliographic-data>
</exchange-document>
</exchange-documents>
</ops:world-patent-data>
作为非常简单的示例,我如何提取文档编号(在上面 XML 的第 11 行)?
我试过:
$xpath = '/ops:world-patent-data/exchange-documents/exchange-document/bibliographic-data/publication-reference/document-id/doc-number';
$data = $result->xpath($xpath);
及其变体,但 $data 始终是空数组。