假设我有这个 XML
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:irp="http://kuleuven-kulak.be/itec/ns/irp/" xml:id="irp-rmg-fr-2013-05-03-00862-src" xml:lang="fr">
<text xml:id="irp-rmg-fr-2013-05-03-00862-src." xml:lang="fr">
<body>
<div>
<p>
<irp:PEnrich irp:path="(//section/paragraph)[1]" n="irp-1">
<irp:PNerd>
1955 (30 avril) Naissance à
<irp:ne ref="http://fr.dbpedia.org/resource/Lille" irp:confidence="1" type="LOC">Lille</irp:ne>.
</irp:PNerd>
</irp:PEnrich>
</p>
</div>
</body>
</text>
</TEI>
我应该如何使用 SimpleXML 和 xpath 来解析 irp:PNerd 节点并获取如下字符串:
1955 (30 avril) Naissance à <url="http://fr.dbpedia.org/resource/Lille">Lille</url>.
我尝试通过以下方式获取文本:
$penrich = $xml->xpath("//irp:PEnrich");
foreach ($penrich as $p) {
$pnerds = $p->children("irp", true);
$pnerd = $pnerds->PNerd;
$ne = $pnerd->ne;
foreach ($ne as $n) {
print_r($n->children());
}
echo "----\n";
}
但这仅检索类型和引用:(另外,我应该如何在我的代码中访问这些值?)
SimpleXMLElement Object
(
[@attributes] => Array
(
[ref] => http://fr.dbpedia.org/resource/Lille
[type] => LOC
)
)
但我想获得类似的东西:
1955 (30 avril) Naissance à <url="http://fr.dbpedia.org/resource/Lille">Lille</url>.