Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是zend框架的初学者。
ob_start("ob_gzhandler") - 为什么函数不能直接在 zend 框架项目中使用?
(在 zend 框架中 ob_start("ob_gzhandler") 是否使用了 auto ?)
谢谢
Zend 控制器响应默认使用输出缓冲(如果您愿意,可以禁用它并使用您自己的处理程序或超载默认响应)。
您可以在 php.ini 中轻松设置 gzip 压缩,因此根本不需要 ob_gzhandler。