1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/sources/include/php_compat/gzopen.php

9 lines
222 B
PHP
Raw Normal View History

2015-07-05 19:12:42 +02:00
<?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);
}
}
?>