解决PHP中file_get_contents抓取网页中文乱码问题
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-21 20:08:28 浏览: 评论:0
file_get_contents函数本来就是一个非常优秀的php自带本地与远程文件操作函数,它可以让我们不花吹挥之力把远程数据直接下载,但我在使用它读取网页时会碰到有些页面是乱码了,下面我就来给各位总结具体的解决办法.
根据网上有朋友介绍说原因可能是服务器开了GZIP压缩,下面是用firebug查看我的博客的头信息,Gzip是开了的,请求头信息原始头信息,代码如下:
- Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
- Accept-Encoding gzip, deflate
- Accept-Language zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3
- Connection keep-alive
- Cookie __utma=225240837.787252530.1317310581.1335406161.1335411401.1537; __utmz=225240837.1326850415.887.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=%E4%BB%BB%E4%BD%95%E9%A1%B9%E7%9B%AE%E9%83%BD%E4%B8%8D%E4%BC%9A%E9%82%A3%E4%B9%88%E7%AE%80%E5%8D%95%20site%3Awww.nowamagic.net; PHPSESSID=888mj4425p8s0m7s0frre3ovc7; __utmc=225240837; __utmb=225240837.1.10.1335411401
- Host www.phpfensi.com
- User-Agent Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20100101 Firefox/12.0
可以从header信息中找到 Content-Encoding 项是 Gzip.
解决办法比较简单,就是用 curl 代替 file_get_contents 去获取,然后在 curl 配置参数中加一条,代码如下:
curl_setopt($ch, CURLOPT_ENCODING, "gzip");
今天用 file_get_contents 抓图片的时候,开始没发现这个问题,废了老大劲才找出来.
1. 使用自带的zlib库,如果服务器已经装了zlib库,用下面的代码可以轻易解决乱码问题,代码如下:
$data = file_get_contents("compress.zlib://".$url);
Tags: file_get_contents 网页中文乱码
相关文章
- ·php file_get_contents读取大容量文件方法(2014-03-30)
- ·php 中file_get_contents超时问题的解决方法(2014-07-18)
- ·PHP file_get_contents采集程序开发教程详解(2014-07-21)
- ·file file_get_contents HTTP request failed(2014-08-17)
- ·php curl、fopen、file_get_contents实例代码(2014-08-17)
- ·php中file_get_contents()导致nginx出现504(2014-09-13)
- ·php file_get_contents返回空 无效解决办法(2014-09-13)
- ·php中file_get_contents 出现HTTP request failed! ...(2014-09-20)
- ·php提示Warning: file_get_contents(): couldn’t resolve(2014-09-20)
- ·如何使用php中的file_get_contents()函数将文件内容读入字符串(2020-01-07)
- ·php file_get_contents抓取Gzip网页乱码的三种解决方法(2020-06-23)
- ·php采用file_get_contents代替使用curl实例(2021-04-24)
- ·PHP中使用file_get_contents抓取网页中文乱码问题解决方法(2021-05-03)
- ·PHP中使用file_get_contents post数据代码例子(2021-05-14)
- ·PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)(2021-06-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)