我正在尝试抓取一个网站以使用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>';
如果我取消注释img
或is_unique
数组行中的任何一个,就会发生错误。
当这些行被注释掉时,其他一切都有效并给出预期的输出。