本文整理汇总了PHP中JResponse::_compress方法的典型用法代码示例。如果您正苦于以下问题:PHP JResponse::_compress方法的具体用法?PHP JResponse::_compress怎么用?PHP JResponse::_compress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JResponse
的用法示例。
在下文中一共展示了JResponse::_compress方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: toString
/**
* Sends all headers prior to returning the string
*
* @access public
* @param boolean $compress If true, compress the data
* @return string
*/
function toString($compress = false)
{
$data = JResponse::getBody();
// Don't compress something if the server is going todo it anyway. Waste of time.
if ($compress && !ini_get('zlib.output_compression') && ini_get('output_handler') != 'ob_gzhandler') {
$data = JResponse::_compress($data);
}
if (JResponse::allowCache() === false) {
JResponse::setHeader('Expires', 'Mon, 1 Jan 2001 00:00:00 GMT', true);
// Expires in the past
JResponse::setHeader('Last-Modified', gmdate("D, d M Y H:i:s") . ' GMT', true);
// Always modified
JResponse::setHeader('Cache-Control', 'no-store, no-cache, must-revalidate', true);
// Extra CYA
JResponse::setHeader('Cache-Control', 'post-check=0, pre-check=0', false);
// HTTP/1.1
JResponse::setHeader('Pragma', 'no-cache');
// HTTP 1.0
}
JResponse::sendHeaders();
return $data;
}
示例2: endOutput
function endOutput(&$menus)
{
echo "</urlset>\n";
if ($this->doCompression) {
$data = ob_get_contents();
@ob_end_clean();
echo JResponse::_compress($data);
}
}