function compress_handler($in_output)
{
return gzencode($in_output);
}
if (strpos($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip') !== FALSE)
{
ob_start('compress_handler');
header('Content-Encoding: gzip');
}
else
{
ob_start();
}
1 Temmuz 2007 Pazar
compressing zip files in php
Subscribe to:
Kayıt Yorumları (Atom)
0 Comments:
Post a Comment