php关闭gzip的方法:首先使用“ob_start('ob_gzhandler');”方法开启gzip压缩;然后通过“ob_end_clean();”方法关闭gzip压缩即可。
推荐:《PHP教程》
php在程序取消gzip压缩
如果前面程序用
ob_start('ob_gzhandler');
开启了gzip压缩,执行过程中又不想用了,可以用:
ob_end_clean();ob_start();
来撤消。。
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!