©
This document uses PHP Chinese website manual Release
(PHP 4, PHP 5)
gztell — Tell gz-file pointer read/write position
$zp
)Gets the position of the given file pointer; i.e., its offset into the uncompressed file stream.
zp
The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() .
The position of the file pointer or FALSE
if an error occurs.
[#1] Steve Ramage [2006-12-18 10:09:06]
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:
<?php
//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