PHP DomXPath - 按类获取子项

时间:2013-10-04 15:19:24

标签: php xpath domdocument domxpath

到目前为止,我的代码使用xPath查询获取所有类'forumRow'。我如何获得每个'forumRow'类中存在一次的a元素的href属性?

我有点卡在我可以从第一个查询的结果开始运行查询的位置。

我当前的代码

            $this -> boards = array();
            $html = @file_get_contents('http://www.roblox.com/Forum/Default.aspx');

            libxml_use_internal_errors(true);
            $page = new DOMDocument();
            $page -> preserveWhiteSpace = false;
            $page -> loadHTML($html);

            $xpath = new DomXPath($page);
            $board_array = $xpath -> query('//*[@class="forumRow"]');

            foreach($board_array as $board)
            {
                $childNodes = $board -> childNodes;
                $boardName = $childNodes -> item(0) -> nodeValue;

                if (strlen($boardName) > 0)
                {

                    $boardDesc = $childNodes -> item(1) -> nodeValue;
                    array_push($this -> boards, array($boardName, $boardDesc));
                }
            }
            $Cache -> saveData(json_encode($this -> boards));

2 个答案:

答案 0 :(得分:4)

不幸的是,我不能让你的代码工作(关于forumRow提取物<td>的) - 所以我做了这件事,而不是:

$html = @file_get_contents('http://www.roblox.com/Forum/Default.aspx');
libxml_use_internal_errors(true);
$page = new DOMDocument();
$page->preserveWhiteSpace = false;
$page->loadHTML($html);
$xpath = new DomXPath($page);

foreach($xpath->query('//td[@class="forumRow"]') as $element){
    $links=$element->getElementsByTagName('a');
    foreach($links as $a) {
        echo $a->getAttribute('href').'<br>';
    }
}

生成

  

/Forum/Search/default.aspx
  /Forum/ShowForum.aspx?ForumID=46
  /Forum/ShowForum.aspx?ForumID=14
  /Forum/ShowForum.aspx?ForumID=44
  /Forum/ShowForum.aspx?ForumID=43
  /Forum/ShowForum.aspx?ForumID=45
  /Forum/ShowForum.aspx?ForumID=21
  /Forum/ShowForum.aspx?ForumID=13
  ...
  一个很长的清单

来自<td class="forumRow">..<a href= ... ></a>..</td>

的所有href

答案 1 :(得分:0)

函数中间有一个return权限,因此数组永远不会被填充,也不会调用saveData(...)。只需删除此行,您的代码似乎可以正常工作。 ;)

$childNodes = $board -> childNodes;
return; // <-- remove this line
$boardName = $childNodes -> item(0) -> nodeValue;