Lines Matching refs:h
11 $h = gzopen($absfile, "w");
12 gzwrite($h, "This is an absolute file");
13 gzclose($h);
15 $h = gzopen($relfile, "w");
16 gzwrite($h, "This is a relative file");
17 gzclose($h);
19 $h = gzopen($absfile, "r");
20 gzpassthru($h);
21 fclose($h);
24 $h = gzopen($relfile, "r");
25 gzpassthru($h);
26 gzclose($h);