0

我正在尝试抓取一个网站以使用QueryPath进行一些练习。

这是我到目前为止所拥有的,并给了我一个错误:

从空值创建默认对象

代码:

// URL to scrape
$baseurl = 'http://some-site-with-a-table-of-items-that-contain-links.com';

// Get all rows from table
$rows = htmlqp($baseurl, '#items_table')->find('tr');

//initialize items array
$items = array();

// initilize counter
$i = 0;

// Iterate through rows of items
foreach($rows as $row) {

    // get the url for the item in this row
    $url = qp($row)->find('.link_txt a')->attr('href');

    // select all the info in the item detail box
    $item = htmlqp($url)->find('.item_detail_box');

    // assign the item attributes to an array
    $items[$i] = [

        // the qp item $row is from the info on the main table of items
        'img_thumb'     => qp($row)->find('.reflection')->attr('src'),
        'name'          => qp($row)->find('.link_txt a')->text(),
        'item_level'    => qp($row)->find('.col_center')->text(),
        'req_level'     => qp($row)->find('.col_right')->text(),
        'url'           => $url,

        // the qp item $item is from the actual item detail page
        //'img'         => qp($item)->find('.reflection')->attr('src'),
        //'is_unique'   => qp($item)->find('.unique')->text(),


    ];

    $i++;
}

$data = print_r($items, true);

return '<pre>' . $data . '</pre>';

如果我取消注释imgis_unique数组行中的任何一个,就会发生错误。

当这些行被注释掉时,其他一切都有效并给出预期的输出。

4

1 回答 1

0

问题发生是因为 QueryPath 没有从选择器中获取任何内容,试图从锚标记中获取文本。

我试图从每个表格行的链接/锚点中获取文本。

但是,我循环中的第一行是表格标题,而不是包含任何链接的行。

在循环中添加检查解决了我的问题:

$url_ext = qp($row)->find('.ic_link_txt a')->attr('href');

    if ( $url_ext != NULL && $url_ext != "" ) {

对我来说,这是一个愚蠢的错误,对 QueryPath 知之甚少。

(也与 github 问题有关https://github.com/technosophos/querypath/issues/130

于 2014-01-20T18:41:30.457 回答