views:

32

answers:

2

How can I check to see if

ob_start("ob_gzhandler");

is working and test the difference with or without it?

Thanks,

+1  A: 

You can use ob_list_handlers to get an array of handlers that are in use.

Gumbo
+2  A: 

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.

Josh