当我解析一些 html 并获得一个 html 元素数组时,我想获得第一项。这是代码:
$url = getLink($good);
$html = file_get_html($url);
$offers = array_filter($html->find('div.b-offers'), function($node) {
return $node->class == 'b-offers'; // If this only class is set
});
// $offer = $offers[0]; // <---- look here
foreach ($offers as $offer) {
$price = $offer->find('span.b-prices__num', 0)->innertext();
break;
}
只有当我立即使用 foreach 和 break 时它才有效。但是为什么 $offer = $offers[0] 不起作用?如果我这样写,这里会报错:
$price = $offer->find('span.b-prices__num', 0)->innertext();
就像在非对象上调用 find() 函数一样。
另一个问题是:是否可以重写我使用 array_filter 函数的代码来获取只有一个类“b-offers”的元素?我记得我尝试了一些不同的方法,比如
$html->find('div[class="b-offers"]')
或某种,但它对我不起作用