1

致尊敬的读者

我正在尝试从从 pubmed 获取的 xml 数据数组中检索数据。数组如下所示:

<summa>
    <DocS>
        <Id>1</Id>
        <Item Name="PubDate" Type="Date">1999</Item>
        <Item Name="EPubDate" Type="Date"/>    //<- notice the open tag
        <Item Name="Source" Type="String">source a</Item>
        <Item Name="AuthorList" Type="List">
            <Item Name="Author" Type="String">a</Item>
            <Item Name="Author" Type="String">b</Item>
        </Item>
    </DocS>
    <DocS>
        <Id>2</Id>
        <Item Name="PubDate" Type="Date">1781</Item>
        <Item Name="EPubDate" Type="Date"/></Item> //<- notice the closed tag
        <Item Name="Source" Type="String">source a</Item>
        <Item Name="AuthorList" Type="List">
            <Item Name="Author" Type="String">a</Item>
            <Item Name="Author" Type="String">b</Item>
            <Item Name="Author" Type="String">c</Item>
            <Item Name="Author" Type="String">d</Item>
        </Item>
    </DocS>
</summa>

该数组的长度不定,但始终具有如下初始结构:

<summa>
    <DocS>
        <Id>1</Id>
        <Item Name="PubDate" Type="Date">1999</Item>

我特别需要的数据是这个

<Item Name="PubDate" Type="Date">data needed </Item>" 

下面的代码是我正在尝试的,它不起作用。有谁能够帮我?

$pmid_all=file_get_contents($url_id);

$p=simplexml_load_string($pmid_all);

$result = $p->xpath('/item');

while(list( , $node) = each($result)) {
    echo 'item: ',$node,"\n";
}
4

2 回答 2

3

您正在根级别 ( /item) 查询项目元素。尝试将您的 xpath 查询替换为/summa/docs/item.

编辑:您的 XML 格式也错误 <Item Name="EPubDate" Type="Date"/></Item>

删除/</Item>

修复后,这对我有用:

$pmid_all=file_get_contents("foo.xml");
$p=simplexml_load_string($pmid_all);
$result = $p->xpath('/summa/DocS/Item');

while(list( , $node) = each($result)) {
    echo 'item: ',$node,"\n";
}

回答您在下面的评论:要获取Item每个 -Element 中的第一个DocS-Element:

$pmid_all=file_get_contents("foo.xml");

$p=simplexml_load_string($pmid_all);
$result = $p->xpath('/summa/DocS');

while(list( , $node) = each($result)) {
    $items = $node->xpath("Item");
    echo 'item: ',$items[0],"\n"; // $item[0] is the first Item found, $item[1] the 2nd, etc...
}
于 2012-05-11T14:40:27.930 回答
0

您的 XML 需要首先被清理。一些标签被关闭两次,一些从未关闭......您将无法解析这种格式错误的 XML。

于 2012-05-11T14:40:29.163 回答