php-使用简单的html dom获取链接
作者:互联网
我正在尝试从网站获取链接.
“ http://www.perfumesclub.com/es/perfume/mujer/c/”
为此,在简单的html Sun中使用“ user-agent”.
但是我得到这个错误..
Fatal error: Call to a member function find() on string in C:\Users\Desktop\www\funciones.php on line 448
这是我的代码:
谢谢^^
$url = 'http://www.perfumesclub.com/es/perfume/mujer/c/';
$option = array(
'http' => array(
'method' => 'GET',
'header' => 'User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
)
);
$context = stream_context_create($option);
$html = new simple_html_dom();
$html = file_get_contents ($url, false, $context);
$perfumes = $html->find('.imageProductDouble'); --> this is line 448
foreach($perfumes as $perfume) {
// Get the link
$enlaces = "http://www.perfumesclub.com" . $perfume->href;
echo $enlaces . "<br/>";
}
解决方法:
将您的file_get_contents包装在str_get_html函数中
// method 1
$html = new simple_html_dom();
$html->load( file_get_contents ($url, false, $context) );
// or method 2
$html = str_get_html( file_get_contents ($url, false, $context) );
您正在创建一个新的dom并将其分配给变量$html,而不是读取返回字符串的url并将其设置为$html,从而覆盖了simple_html_dom实例,因此,在调用find方法时,您使用的是字符串而不是宾语.
标签:file-get-contents,simple-html-dom,find,html,php 来源: https://codeday.me/bug/20191027/1946421.html