我有一个 XML 文档:
<product>
<item>
<item00>
<name>DVD</name>
</item00>
</item>
</product>
<product>
<item>
<item11>
<name>CD</name>
</item11>
</item>
</product>
我想显示这些产品的名称,但是有些产品的项目为“ item00 ”和“ item11 ”。
我尝试在 XPath 中添加路径正则表达式,但没有成功。
我有可能使用 XPath 显示这些产品(DVD 和 CD)的名称吗?
<?php
$xml = 'file.xml';
$content = '';
$f = fopen($xml, 'r');
while($data = fread($f, filesize($xml))) {
$content.= $data;
}
fclose($f);
preg_match_all('/\<product\>(.*?)\<\/product\>/s', $content, $product);
$product = $product[1];
$doc = new SimpleXMLElement($content);
for($i = 0; $i <= count($product) - 1; $i++) {
// So far, no problems. Seriously.
// The issue starts here.
$query = $doc->xpath('/product/item/???');
foreach($query as $item) {
echo $item->name . '<br>';
}
}
?>
在哪里 ”???” 是“item00”和“item11”的问题。
如果有人知道并可以帮助我,我将非常感激!