84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
php程序在firefox出现内容编码错误怎么解决?
How to solve the content encoding error in Firefox when using PHP program? -PHP Chinese website Q&A-How to solve the content encoding error in PHP program in Firefox? -PHP Chinese website Q&A
Let’s take a look and learn.
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 () 来清除输出的内容。
How to solve the content encoding error in Firefox when using PHP program? -PHP Chinese website Q&A-How to solve the content encoding error in PHP program in Firefox? -PHP Chinese website Q&A
Let’s take a look and learn.
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 () 来清除输出的内容。