Lines Matching refs:h
12 $h = gzopen($f, 'w');
15 gzwrite($h, $str1);
16 echo "tell=".gztell($h)."\n";
19 gzseek($h, strlen($str1) + 20, SEEK_SET);
20 echo "tell=".gztell($h)."\n";
21 gzwrite($h, $str2);
22 echo "tell=".gztell($h)."\n";
23 gzclose($h);
25 $h = gzopen($f, 'r');
26 echo gzread($h, strlen($str1))."\n";
27 var_dump(bin2hex(gzread($h, 20)));
28 echo gzread($h, strlen($str2))."\n";
29 gzclose($h);