目前,我正在解析一个网页,我想我已经可以拨打多少个电话了,而他们阻止了我的IP推广。
这是我的代码。
$html = file_get_html("https://website.com/");
foreach($html->find('div.entry-title > h2 > a') as $element) {
// do some other stuff.
}
我该如何添加代理以防止我的请求被阻止403,我已经尝试了以下操作,但是没有运气。
$context = array('http' => array('proxy' => 'tcp://221.176.14.72:80','request_fulluri' => true,),);
$stream = stream_context_create($context);
$html = file_get_html("https://website.com/", false, $stream);