3

How can I check to see if

ob_start("ob_gzhandler");

is working and test the difference with or without it?

Thanks,

Paul R
  • 208,748
  • 37
  • 389
  • 560
Amien
  • 954
  • 2
  • 11
  • 18

2 Answers2

4

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.

Community
  • 1
  • 1
Josh
  • 10,961
  • 11
  • 65
  • 108
  • We can test the HTTP Compression also [*here*](http://www.whatsmyip.org/http-compression-test/) – eQ19 Apr 12 '15 at 13:02
1

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

Gumbo
  • 643,351
  • 109
  • 780
  • 844