有没有办法在PHP Simple HTML DOM Parser中包含用户代理字符串和请求?
答案 0 :(得分:10)
感谢MichalČihař,你是对的 我刚刚对simple_html_dom类的load_file()函数进行了一些更改,并且它可以工作
// load html from file
function load_file() {
$args = func_get_args();
// Added by Mithun
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6\r\n".
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$args[1] = FALSE;
$args[2] = $context;
// End Mithun
$this->load(call_user_func_array('file_get_contents', $args), true);
}
答案 1 :(得分:4)
通过查看代码,可以使用上下文流,例如:
$context = stream_context_create();
stream_context_set_params($context, array('user_agent' => 'UserAgent/1.0'));
file_get_html('http://www.google.com/', 0, $context);
或者,您也可以在php.ini中设置默认值。