相同的XPath查询正在使用Google文档而不是PHP

时间:2013-07-04 22:43:40

标签: php xpath

下面的XPath查询使用Google docs的importXML完全正常,但不能使用以下PHP脚本。如果我将查询更改为更简单的查询,则脚本按预期工作。我一直试图解决这个问题很长一段时间,并希望得到任何建议。

非常感谢提前!

$file = fopen('info-urls.txt', "r");

$output = array();
$i=1;

while(!feof($file)){
    $line = fgets($file);

    echo $line . '<br/>';
    $doc = new DOMDocument();
    $doc->loadHTMLFile(trim($line));

    $xpath = new DOMXpath($doc);

    $elements = $xpath->query("substring((//*[self::div or self::p or self::li or self::td or self::tr or self::table or self::h4 or self::h4 or self::h3 or self::h2 or self::h1][contains(text(),'boat') or contains(text(),'bike') or contains(text(),'car')]/text())[1], 0, 499)");

    if ($elements->length == 0) {
      $output[] = 'N/A';
    }else{
        foreach ($elements as $element) {
            $nodes = $element->childNodes;
            foreach ($nodes as $node) {
                if(strcmp($node->nodeValue, "")!=0){
                    $output[] = trim($node->nodeValue);
                }
            }
        }
    }
}
array2csv($output);
print_r($output);

function array2csv(array &$array){
    $file = 'descriptions.txt';

    $csvFormat = "";

    for($i=0; $i < sizeof($array); $i++){
        $csvFormat .= $array[$i] . ",\n";
    }
    file_put_contents($file, $csvFormat);
}

脚本description.txt输出

N/A,
N/A,
N/A,
N/A,
N/A,

运行的XPath查询

//a

1 个答案:

答案 0 :(得分:1)

使用$xpath->evaluate()代替$xpath->query()。这是因为您的查询将返回标量字符串而不是DOMNodeList,它将返回XPath函数substring()的结果,实际上是字符串。