How to tell if ob_gzhandler is working?
compression, ob-start, php
Solution
Using the "Net" tab of Firebug, check to see if the `Content-Encoding` header has a value of `gzip` or `deflate`.
Or, try the online gzip test.
See this question.
Problem
How can I check to see if ``` ob_start("ob_gzhandler"); ``` is working and test the difference with or without it? Thanks,