I try new feture in php4.0.4
ob_start("ob_gzhandler");
and turn on it in php.ini:
output_handler = ob_gzhandler ; turn on HTTP compression for PHP content
my phpinfo.php
<?php
ob_start("ob_gzhandler");
phpinfo();
?>
but I check the size of my
phpinfo() still 39K as the output before i added ob_gzhandler.
and I m sure my output_handler is on for i found it in phpinfo();
how to make sure my ob_gzhandler is work?