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.
如果在 IIS 中启用了 GZip,它只会提高 ASP 页面的性能还是可以设置为压缩 PHP 页面?
PHP 还内置了对 gzip 压缩的支持。您可以通过调用来初始化它
ob_start("ob_gzhandler");
或者通过激活 php.ini 中的 zlib.output_compression 指令。
是的,gzip 只是压缩提供给浏览器的内容,即 html 和图像。