Lines Matching refs:fh
46 $fh = fopen($file, 'r');
47 if (!$fh) {
50 $ret = $this->parseHandle($fh);
51 fclose($fh);
66 $fh = fopen($file, 'r');
67 if (!$fh) {
70 while (!feof($fh)) {
71 $ret[] = $this->parseHandle($fh);
73 fclose($fh);
82 * @param resource $fh File handle with pointer at start of valid string-hash
86 protected function parseHandle($fh) argument
92 $line = fgets($fh);
131 } while (!feof($fh));