我使用phpQuery创建了一个脚本。该脚本找到包含某个字符串的td:
$match = $dom->find('td:contains("'.$clubname.'")');
直到现在它还运作良好。因为一个俱乐部名称是奥地利卢斯特瑙,第二个俱乐部是Lustenau。它将选择两个俱乐部,但它只应选择Lustenau(第二个结果),所以我需要找到一个包含完全匹配的td。
我知道phpQuery正在使用jQuery选择器,但不是全部。有没有办法使用phpQuery找到完全匹配?
答案 0 :(得分:3)
更新:有可能,请参阅@ pguardiario的答案
原始答案。 (至少另一种选择):
不,不幸的是用phpQuery是不可能的。但是可以使用 XPath 轻松完成。
想象一下你必须遵循HTML:
$html = <<<EOF
<html>
<head><title>test</title></head>
<body>
<table>
<tr>
<td>Hello</td>
<td>Hello World</td>
</tr>
</table>
</body>
</html>
EOF;
使用以下代码查找与DOMXPath完全匹配的内容:
// create empty document
$document = new DOMDocument();
// load html
$document->loadHTML($html);
// create xpath selector
$selector = new DOMXPath($document);
// selects all td node which's content is 'Hello'
$results = $selector->query('//td[text()="Hello"]');
// output the results
foreach($results as $node) {
$node->nodeValue . PHP_EOL;
}
但是,如果你真的需要一个phpQuery解决方案,请使用以下内容:
require_once 'phpQuery/phpQuery.php';
// the search string
$needle = 'Hello';
// create phpQuery document
$document = phpQuery::newDocument($html);
// get matches as you suggested
$matches = $document->find('td:contains("' . $needle . '")');
// empty array for final results
$results = array();
// iterate through matches and check if the search string
// is the same as the node value
foreach($matches as $node) {
if($node->nodeValue === $needle) {
// put to results
$results []= $node;
}
}
// output results
foreach($results as $result) {
echo $node->nodeValue . '<br/>';
}
答案 1 :(得分:1)
我没有phpQuery的经验,但jQuery会是这样的:
var clubname = 'whatever';
var $match = $("td").map(function(index, domElement) {
return ($(domElement).text() === clubname) ? domElement : null;
});
phpQuery文档表明->map()
可用,并且它以与jQuery相同的方式接受回调函数。
我相信你将能够执行phpQuery的翻译。
修改强>
这是我基于5分钟阅读的尝试 - 可能是垃圾,但这里有:
$match = $dom->find("td")->map(function($index, $domElement) {
return (pq($domElement)->text() == $clubname) ? $domElement : null;
});
修改2
如果phpQuery在其documentation中执行了它所说的内容,那么(从javascript正确翻译)它应该以相同的方式匹配所需的元素。
编辑3
在更多关于phpQuery callback system的阅读之后,以下代码更有可能成为工作:
function textFilter($i, $el, $text) {
return (pq($el)->text() == $text) ? $el : null;
}};
$match = $dom->find("td")->map('textFilter', new CallbackParam, new CallbackParam, $clubname);
请注意->map()
优先于->filter()
,因为->map()
支持更简单的方法来定义参数“地点”(参见参考页中的示例2)。
答案 2 :(得分:1)
可以使用过滤器完成,但它并不漂亮:
$dom->find('td')->filter(function($i, $node){return 'foo' == $node->nodeValue;});
但是,在css和xpath之间来回切换
答案 3 :(得分:0)
我知道这个问题已经过时了,但我已根据hek2mgl
的回答编写了一个函数<?php
// phpQuery contains function
/**
* phpQuery contains method, this will be able to locate nodes
* relative to the NEEDLE
* @param string element_pattern
* @param string needle
* @return array
*/
function contains($element_pattern, $needle) {
$needle = (string) $needle;
$needle = trim($needle);
$element_haystack_pattern = "{$element_pattern}:contains({$needle})";
$element_haystack_pattern = (string) $element_haystack_pattern;
$findResults = $this->find($element_haystack_pattern);
$possibleResults = array();
if($findResults && !empty($findResults)) {
foreach($findResults as $nodeIndex => $node) {
if($node->nodeValue !== $needle) {
continue;
}
$possibleResults[$nodeIndex] = $node;
}
}
return $possibleResults;
}
?>
用法
<?php
$nodes = $document->contains("td.myClass", $clubname);
?>