Lines Matching refs:h
8 $h = gzopen($f, 'w');
11 gzwrite($h, $str1);
12 echo "tell=".gztell($h)."\n";
15 gzseek($h, 20, SEEK_CUR);
16 echo "tell=".gztell($h)."\n";
17 gzwrite($h, $str2);
18 echo "tell=".gztell($h)."\n";
19 gzclose($h);
21 $h = gzopen($f, 'r');
22 echo gzread($h, strlen($str1))."\n";
23 var_dump(bin2hex(gzread($h, 20)));
24 echo gzread($h, strlen($str2))."\n";
25 gzclose($h);