使用PHP压缩内容 ob_start() vs Apache Deflate/Gzip?
2022-08-30 17:16:41
大多数网站都希望压缩其内容以节省带宽。但是,当涉及到运行PHP的apache服务器时,有两种方法可以做到这一点 - 使用PHP或apache。那么哪一个在您的服务器上更快或更容易?
例如,在 PHP 中,我在页面的开头运行以下函数来启用它:
/**
* Gzip compress page output
* Original function came from wordpress.org
*/
function gzip_compression() {
//If no encoding was given - then it must not be able to accept gzip pages
if( empty($_SERVER['HTTP_ACCEPT_ENCODING']) ) { return false; }
//If zlib is not ALREADY compressing the page - and ob_gzhandler is set
if (( ini_get('zlib.output_compression') == 'On'
OR ini_get('zlib.output_compression_level') > 0 )
OR ini_get('output_handler') == 'ob_gzhandler' ) {
return false;
}
//Else if zlib is loaded start the compression.
if ( extension_loaded( 'zlib' ) AND (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE) ) {
ob_start('ob_gzhandler');
}
}
另一种选择是使用Apache deflate或gzip(两者都非常接近)。要启用它们,您可以将类似如下内容添加到 .htaccess 文件中。
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
由于PHP是一种脚本语言(必须由PHP加载),我假设apache方法1)更稳定,2)更快。但假设在现实世界中并没有多大用处。
毕竟,您会认为,凭借巨大的财务支持窗口...呃,我们不会去那里。