file_get_contents 抓取网页乱码。

Posted 大肥龙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file_get_contents 抓取网页乱码。相关的知识,希望对你有一定的参考价值。

iconv

string iconv ( string $in_charset , string $out_charset , string $str )

 

mb_convert_encoding

string mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding ] )

 

试了两个编码转换函数都无法 解决。然后发现要是编码问题,至少要能看见html标签。所以不是编码的错。最后想到gzip。

php已经自带了gzip解压函数 :

gzdecode

string gzdecode ( string $data [, int $length ] )
 
在PHP版本5.4以上可用。

 

以上是关于file_get_contents 抓取网页乱码。的主要内容,如果未能解决你的问题,请参考以下文章

用python抓取的网页保存后为啥乱码?

如何解决用 Beautiful Soup 抓取网页却得到乱码的问题

Python 抓取网页gb2312乱码问题

网页资源抓取

delphi7 用 idhttp.get 抓取网页显示乱码

python爬虫抓取到的数据用网页打开时是乱码,怎么解决