piwigo/include/php_compat/gzopen.php
2014-10-06 10:45:23 +00:00

9 lines
No EOL
222 B
PHP

<?php
if (!function_exists('gzopen') && function_exists('gzopen64'))
{
function gzopen(string $filename , string $mode, int $use_include_path = null)
{
return gzopen64($filename, $mode, $use_include_path);
}
}
?>