I wish to compress some data using
ob_start("ob_gzhandler");
I use
if(strstr($_SERVER['HTTP_ACCEPT_ENCODING'],gzip)) {
ob_start("ob_gzhandler");
} else {
ob_start();
}
but the compression is never used..
obstart is always used withouth the gz_handler
is there a way around this? or am I doing something
wrong here?Kind regards kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

