0

我尝试编写一个简单的 PHP 来抓取一个 html 页面。我不知道为什么我不能得到结果?这是我的一些PHP代码:

//$html , successfuly get the html from "http://m.hkgolden.com/topics.aspx?type=HW" by curl

$dom = new DOMDocument();
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$xpath->registerNamespace('x', 'http://www.w3.org/1999/xhtml');

$itemList = $xpath->query('//x:div[contains(@class,"TopicBox_Details")]/a');

var_dump($itemList); // it show --> object(DOMNodeList)#4 (0) { }

foreach ($itemList as $item){
        $this->child_urls[] = $item->getElementsByTagName('a')->item(0)->getAttribute('href');
                }

var_dump($this->child_urls); //it show --> array(0) { } 

相同的 xpath 查询在 firefox XPath Checker 中工作,但相同的查询不能在 PHP 中工作。我做错了吗? Firefox XPath 检查器

4

1 回答 1

0

您还应该将命名空间添加到aXPath 中的元素 - 命名空间被继承:

//x:div[contains(@class,"TopicBox_Details")]/x:a
于 2012-08-02T10:35:15.733 回答