如何解决php采集乱码的问题
php采集乱码的解决办法:1、使用“str=mbconvertencoding(str, “utf-8”, “GBK”);”方法转换编码;2、将数据经过gzip压缩;3、在顶部增加“charset=utf8”代码。
推荐:《PHP视频教程》
php 抓取页面乱码
在抓取页面的时候出现类似�������这样乱码解决方法如下
1、转换编码
str=mbconvertencoding(str, “utf-8”, “GBK”);
2、数据经过gzip压缩
curl获取数据的时候设置添加下面的选项:
curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
使用file_get_contents函数需要安装zlib库
$data = file_get_contents("compress.zlib://".$url);
3、获取数据后显示乱码
在顶部增加下面的代码
header("Content-type: text/html; charset=utf-8");