Lines Matching refs:h
11 $h = fopen($absfile, "w");
12 fwrite($h, "This is an absolute file");
13 fclose($h);
15 $h = fopen($relfile, "w");
16 fwrite($h, "This is a relative file");
17 fclose($h);
20 $h = fopen($absfile, "r", true, $ctx);
21 fpassthru($h);
22 fclose($h);
25 $h = fopen($relfile, "r", true, $ctx);
26 fpassthru($h);
27 fclose($h);