我没有找到一种方法来检索所有具有属性的元素ec:edit
。我只找到了获取命名空间元素的示例,但没有找到属性。
attr()
使用或搜索属性时也没有结果hasAttr()
。
dbpedia 示例:
foreach ($qp->branch()->find('foaf|page') as $img) {
print $img->attr('rdf:resource') . PHP_EOL;
}
rdf 文件示例:
<dbpprop:artist rdf:resource="http://dbpedia.org/resource/The_Beatles" />
但这不会检索任何结果:
$edits = $htmldocument->find('div[mc|edit];
foreach ($edits as $key => $value) {
echo $value->attr('mc:edit');
}
样本数据:
<div mc:edit="stuff"> // etc
我什么都得不到。