0

我没有找到一种方法来检索所有具有属性的元素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

我什么都得不到。

4

1 回答 1

1

好的,lambdas 解决了一切:

find('div')->filterLambda('return qp($item)->hasAttr("mc:edit");');
于 2013-03-11T20:14:16.407 回答