我正在尝试对此链接中的Urls进行>
http://brillia.com/search/?area=26900,27999,28999
使用以下代码块:
$url = 'http://brillia.com/search/?area=26900,27999,28999';
function fetch_sumitomo_links($url)
{
$htmldoc = HtmlDomParser::file_get_html($url, false, null, 0 );
foreach ($htmldoc->find(".boxInfomation a") as $a) {
$links[] = $a->href;
}
return $links;
}
$items = fetch_sumitomo_links($url);
print_r($items);
我实际上是在获取URL,而不是我想要的页面。
Simple_dom
或DOMdocument
获取此页面的URL
http://brillia.com/search/
他们不读此行:?area=26900,27999,28999
顺便说一句,我正在使用Laravel。