如何在QueryPath中获取自定义或命名空间元素?

时间:2015-02-24 21:55:33

标签: domdocument querypath

我正在尝试在QueryPath库中获取自定义元素。但是QueryPath不起作用。任何人都可以帮我在QueryPath中如何做到这一点?请参阅下面的示例代码;

<plugin:text path="filename" />

此外,我还详细检查了PhpSimpleDom库。虽然它对我有用。但它并没有提供css选择器的全面支持等等。我在PhpSimpleDom中也遇到了非常糟糕的内存问题。

任何人都可以帮我在QueryPath中获取上面提到的元素吗?

由于 SMAC

1 个答案:

答案 0 :(得分:0)

来自https://github.com/pode/reiseplanlegger/blob/master/api/dbpedia.php

的rdf:

<rdf:RDF><rdf:Description rdf:about="http://dbpedia.org/resource/John_Frandsen_(footballer)"><dbpprop:placeOfBirth rdf:resource="http://dbpedia.org/resource/Denmark"/><dbpedia-owl:birthPlace rdf:resource="http://dbpedia.org/resource/Denmark"/></rdf:Description>/rdf:RDF>

代码:

// Fetch the URL and select all rdf:Description elements.
// (Note that | is the CSS 3 equiv of colons for namespacing.)
// To add the context, we pass it in as an option to QueryPath.
$qp = qp($url, 'rdf|Description', array('context' => $cxt));

[...]

// Here, we use rdf|* to select all elements in the RDF namespace.
$qp->top()->find('rdf|about');

(请注意|是命名空间的CSS 3当量冒号。)