我想获取页面的html源但是给出错误!! 我使用此代码给:
<?php
header('Content-Type: text/html; charset=utf-8');
$html = file_get_html("http://www.google.com/");
echo $html;
当我想从here获取来源时,我没有做出正确的回复,我得到了类似这些字符的内容
����i�[S$%ٲ�9������
答案 0 :(得分:0)
使用函数file_get_contents
代替:
答案 1 :(得分:0)
你应该这样做,注意:下载simple_html_dom类here
<?php
include_once('simple_html_dom.php');
$html = file_get_html('http://www.google.co.in');
echo $html;
?>