Lines Matching refs:tmp
151 $tmp = gzread($this->gzfile, 8192);
152 $this->filePos += strlen($tmp);
153 } while ($tmp != '');
173 $tmp = $this->filePos;
175 return $tmp;
224 $tmp = tmpfile();
231 fwrite($tmp, $data);
240 fwrite($tmp, $data);
250 fwrite($tmp, $data);
253 fseek($tmp, 0);
262 while (!feof($tmp)) {
263 $data = fread($tmp, 8192);
266 fclose($tmp);