Lines Matching refs:fh
261 $fh = @gzopen($file, $mode . '9');
262 if (!$fh) return false;
263 gzwrite($fh, $content);
264 gzclose($fh);
272 $fh = @bzopen($file, 'w');
273 if (!$fh) return false;
274 bzwrite($fh, $content);
275 bzclose($fh);
277 $fh = @fopen($file, $mode);
278 if (!$fh) return false;
279 fwrite($fh, $content);
280 fclose($fh);
769 $fh = @fopen($file, 'r');
770 if (!$fh) return false;
775 while (!feof($fh)) {
776 $line .= fgets($fh, 4096); // read full line
791 fclose($fh);