PHP的file_get_contents不支持gzip编码过的页面? 无为而为 2011-07-11 php gzip file_get_contents 分类:技术备忘 阅读:8395 评论:0 PHP的file_get_contents获取远程页面内容,如果是gzip编码过的,返回的字符串就是编码后的乱码1、解决方法,找个ungzip的函数来转换下2、给你的url加个前缀,这样调用[quote]$content = file_get_contents("compress.zlib://".$url);[/quote]无论页面是否经过gzip压缩,上述代码都可以正常工作!PHP 4.3.0以后版本支持,还可以用于fopen之类的函数~!