** Second method use gzencode(). Create a gzip compressed string
Good : create a gzip compressed string...on the fly Bad : support by >= php4.0.4
What do you think about this ?
I prefer the second one. With a simple test for this feature, like :
if (function_exists('gzencode')) { // gzip dump feature is ok }
Yes, second one ;-) ... in spite of the annoying php4 dependancy.
Alain.