Lines Matching refs:h
34 $h = gzopen($secondFile, "w");
35 gzwrite($h, "This is a file in dir2");
36 gzclose($h);
40 $h = gzopen($filename, $mode, true);
41 if ($h) {
42 gzpassthru($h);
43 gzclose($h);
48 $h = gzopen($firstFile, "w");
49 gzwrite($h, "This is a file in dir1");
50 gzclose($h);
53 $h = gzopen($filename, $mode, true);
54 if ($h) {
55 gzpassthru($h);
56 gzclose($h);
61 $h = gzopen($filename, "w");
62 gzwrite($h, "This is a file in working dir");
63 gzclose($h);
66 $h = gzopen($filename, $mode, true);
67 if ($h) {
68 gzpassthru($h);
69 gzclose($h);
77 $h = gzopen($filename, $mode, true);
78 if ($h) {
79 gzpassthru($h);
80 gzclose($h);
85 $h = gzopen($scriptFile, "w");
86 gzwrite($h, "This is a file in script dir");
87 gzclose($h);
90 $h = gzopen($filename, $mode, true);
91 if ($h) {
92 gzpassthru($h);
93 gzclose($h);