I am creating a wap portal, and wanted to know if Opera Mini supports gzip encoding?

However, does

ob_start("ob_gzhandler");

automatically check if the browser supports gzip and sends the gzipped encoded content or do we need to check that manually ?

link|improve this question

gzip encoding on mobile devices sounds like a battery killer. – Aram Hăvărneanu Apr 12 '10 at 9:54
thanks for the suggestion :) – atif089 Apr 13 '10 at 10:29
1  
Gzip compression doesn't harm the battery when using Opera Mini b/c the decompression is done on the Opera Mini servers. – Gerald Senarclens de Grancy Apr 20 '10 at 6:42
feedback

1 Answer

up vote 0 down vote accepted

I got my answer, it support gzip, x-gzip, identity, deflate

and for gzip

<?php
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) 
    ob_start("ob_gzhandler");
else
    ob_start();
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.