Home >php教程 >php手册 >firefox出现内容编码错误

firefox出现内容编码错误

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 11:34:051339browse

  使用php的程序用浏览器访问出现firefox提示 内容编码错误 无法显示您尝试查看的页面,因为它使用了无效或者不支持的压缩格式,而在ie下就是‘该页无法显示’,使用了ThinkPHP框架,一直不知道是什么原因,后来一步一步排查,原来是程序里使用了ob_start('ob_gzhandler')导致的。

  而解决这个问题,其实很简单,以下二个问题可能导致此问题产生的。

  1、服务器不支持这种压缩格式,可使用function_exists('ob_gzhandler')判断,解决方法 ob_start('ob_gzhandler')改为ob_start();

  2、使用ob_start('ob_gzhandler')时候前面已经有内容输出,检查前面内容以及require include调用文件的内容。若无法找到可以在调用其它文件前使用ob_start(),调用之后使用 ob_end_clean () 来清除输出的内容;

  我出现的这个错误,就是由于在ob_start之前有输出内容的了。所以才导致程序运行不起来。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn