blob: 4e9fe332d1f25cbef928239cfb7638a6fdb7176e (
plain)
1
2
3
4
5
6
7
8
9
|
<?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);
}
}
?>
|