说我的XML看起来像这样:

<record>
  <row name="title">this item</row>
  <row name="url">this url</row>
</record>

现在我正在做这样的事情:
$xml = new DOMDocument();
$xml->load('xmlfile.xml');

echo $xml->getElementByTagName('row')->item(0)->attributes->getNamedItem('title')->nodeValue;

但这给了我:

注意:尝试获取非对象ID的属性

有人知道如何获取“名称”属性值为“标题”的节点值吗?

最佳答案

尝试:

$xml = new DOMDocument();
$xml->loadXml('
<record>
  <row name="title">this item</row>
  <row name="url">this url</row>
</record>
');

$xpath = new DomXpath($xml);

// traverse all results
foreach ($xpath->query('//row[@name="title"]') as $rowNode) {
    echo $rowNode->nodeValue; // will be 'this item'
}

// Or access the first result directly
$rowNode = $xpath->query('//row[@name="title"][1]')->item(0);
if ($rowNode instanceof DomElement) {
    echo $rowNode->nodeValue;
}

关于php - php domdocument获取节点值,其中属性值是,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6827871/

10-16 22:19