gzclose
(PHP 4, PHP 5)
gzclose — بستن یک اشارهگر باز gz-file
Description
bool gzclose
( resource $zp
)
بستن یک اشارهگر باز gz-file.
Return Values
Returns TRUE on success or FALSE on failure.
Examples
Example #1 مثال gzclose()
<?php
$gz = gzopen('somefile.gz','w9');
gzputs ($gz, 'I was added to somefile.gz');
gzclose($gz);
?>
There are no user contributed notes for this page.
