The php docs says gzuncompress has been around since php 4.0.1
http://www.php.net/gzuncompress
but our servers (php 4.3.0) at work do not have this function. I tried bringing in code which worked at home but I got 'undefined function' at work.
function_exists('gzuncompress')
returns false.
I did a bit of checking and found that zlib is required... so I suppose our work servers don't have this installed. If I'm right, how do I add zlib to a PHP installation?
What are the chances of this function being available on typical PHP installations? I want to use this function in an Open Source project. I initially thought that if the manual said >4.0.1, then anyone with a higher version of php than that would have the function.