(PHP 4, PHP 5)
gzclose — بستن یک اشارهگر باز gz-file
بستن یک اشارهگر باز gz-file.
Returns TRUE on success or FALSE on failure.
Example #1 مثال gzclose()
<?php
$gz = gzopen('somefile.gz','w9');
gzputs ($gz, 'I was added to somefile.gz');
gzclose($gz);
?>