(PHP 4, PHP 5)
gzclose — Bir açık gzipli dosya tanıtıcısını kapar
Belirtilen dosya tanıtıcısını kapatır.
Gzipli dosya tanıtıcısı. gzopen() tarafından açılmış bir dosyayı gösteren geçerli bir tanıtıcı olmalıdır.
Başarı durumunda TRUE, aksi takdirde FALSE döndürür.
Örnek 1 - gzclose() örneği
<?php
$gz = gzopen('birdosya.gz','w9');
gzputs ($gz, 'birdosya.gz dosyasına eklenecek veri');
gzclose($gz);
?>