如何获取html源没有任何错误?

时间:2014-06-10 11:51:31

标签: php html

我想获取页面的html源但是给出错误!! 我使用此代码给:

<?php
    header('Content-Type: text/html; charset=utf-8');
    $html = file_get_html("http://www.google.com/");
    echo $html;

当我想从here获取来源时,我没有做出正确的回复,我得到了类似这些字符的内容

����i�[S$%ٲ�9������

2 个答案:

答案 0 :(得分:0)

使用函数file_get_contents代替:

http://www.php.net/manual/en/function.file-get-contents.php

答案 1 :(得分:0)

你应该这样做,注意:下载simple_html_dom类here

<?php
include_once('simple_html_dom.php');
$html = file_get_html('http://www.google.co.in');
echo $html;
?>