vote up 0 vote down star

If GZip is enabled in IIS is it only going to improve performance for ASP pages or can it be setup to compress PHP pages as well?

flag

2 Answers

vote up 1 vote down

PHP also has built in support for gzip compression. You can initialize it by calling

ob_start("ob_gzhandler");

or by activating the zlib.output_compression directive in php.ini.

link|flag
Does this option only work in Apache or IIS as well? – Keith Maurino Mar 4 at 17:43
1  
It's independent of webserver. All the processing is done "before" the webserver. – Emil H Mar 4 at 23:19
vote up 0 vote down

Yes, gzip just compresses the content being served to the browser i.e. html and images.

link|flag

Your Answer

Get an OpenID
or

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