我使用 curl 收到一个 html 字符串:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$html_string = curl_exec($ch);
当我echo
看到它时,我看到了一个非常好的 html,因为我需要我的解析需求。但是,当尝试将此字符串发送到HTML DOM PARSER
方法str_get_html($html_string)
时,它不会上传它(从方法调用返回 false)。
我尝试将其保存到文件并file_get_html
在文件上打开,但同样的事情发生了。
这可能是什么原因?正如我所说,当我回显它时,html 看起来非常好。
非常感谢。
代码本身:
$html = file_get_html("http://www.bgu.co.il/tremp.aspx");
$v = $html->find('input[id=__VIEWSTATE]');
$viewState = $v[0]->attr['value'];
$e = $html->find('input=[id=__EVENTVALIDATION]');
$event = $e[0]->attr['value'];
$html->clear();
unset($html);
$body = " A_STRING_THAT_CONTAINS_SOME_DATA "
$ch = curl_init("http://www.bgu.co.il/tremp.aspx");
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$html_string = curl_exec($ch);
$file_handle = fopen("file.txt", "w");
fwrite($file_handle, $html_string);
fclose($file_handle);
curl_close($ch);
$html = str_get_html($html_string);