downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

gzuncompress> <gzseek
[edit] Last updated: Fri, 17 May 2013

view this page in

gztell

(PHP 4, PHP 5)

gztellErmittelt die aktuelle Position in einer gz-Datei

Beschreibung

int gztell ( resource $zp )

Gibt die aktuelle Schreib-/Leseposition innerhalb der gegebenen gz-Datei zurück. Diese entspricht dem Offset in die nicht komprimierten Dateidaten.

Parameter-Liste

zp

Die gz-Datei Resource. Dies muss auf eine gültige, erfolgreich mit gzopen() geöffnete Datei zeigen.

Rückgabewerte

Die aktuelle Dateiposition oder FALSE bei Fehlern.

Siehe auch

  • gzopen() - Öffnet gz-Dateien
  • gzseek() - Positioniert innerhalb einer gz-Datei
  • gzrewind() - Setzt die Dateiposition auf den Anfang zurück



add a note add a note User Contributed Notes gztell - [1 notes]
up
0
Steve Ramage
6 years ago
ok so this function returns the gz file pointer as the uncompressed data byte length so if you are trying to put something in to specific size gzip files it won't work.

Example:

<?
//some_file.sql  filesize = 2,048,000 bytes

$text_fp=fopen('some_file.sql','r');
$gz_fp=gzopen('some_file.sql.gz','wb9');
while(!feof($text_fp)){
    gzwrite($gz_fp,fread($text_fp,655360));
}
fclose($text_fp);
echo "gztell = ".gztell($gz_fp)."<BR>\n";
gzclose($gz_fp);
echo "filesize = ".filesize('some_file.sql.gz')."<BR>\n";
?>

Output:

gztell = 2048000
filesize = 249264

I will report this as a bug but post a note here for now

 
show source | credits | stats | sitemap | contact | advertising | mirror sites