网站解析uisng简单html dom库

时间:2019-06-12 12:27:32

标签: php codeigniter

when we get the file_get_html() show this output.not fully loaded the website我使用简单的html dom进行网站抓取,但是某些网站可以加载上下文网页,但是我的网站之一无法加载?  无法加载https://shop.advanceautoparts.com/的网站,我们能做些什么,谢谢。

include('../simple_html_dom1.php');
$opts  = array(
            'http'=>array(
                'method'=>"GET",
                'header'=>"Accept-language: en\r\n" .
                "User-Agent:USER_AGENT='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36".
                "Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$html= file_get_html('https://shop.advanceautoparts.com/',FALSE,$context);
echo $html;
exit;

0 个答案:

没有答案