Lines Matching refs:return
53 * @return whether the end of the stream is reached
57 return eof($this->fp);
61 * @return next line from stream
69 return $buf;
75 * @return array containing read data
91 return fgetcsv($this->fp, $this->max_len, $delimiter, $enclosure);
107 * @return array(delimiter, enclosure) as used in fgetcsv
111 return array($this->delimiter, $this->enclosure);
120 return flock($this->fp, $operation, $wouldblock);
125 * @return success or failure
129 return fflush($this->fp);
133 * @return current file position
137 return ftell($this->fp);
143 * @return Upon success, returns 0; otherwise, returns -1. Note that
148 return fseek($this->fp, $pos, $whence);
152 * @return next char from file
164 /** Read and return remaining part of stream
165 * @return size of remaining part passed through
169 return fpassthru($this->fp);
177 return fgetss($this->fp, $allowable_tags);
187 return fscanf($this->fp, $format /* , ... */);
196 return fwrite($this->fp, $length);
200 * @return array of file stat information
204 return fstat($this->fp);
212 return ftruncate($this->fp, $size);
224 * @return current set of flags
228 return $this->flags;
240 * @return current setting for max line
244 return $this->max_len;
248 * @return false
252 return false;
256 * @return false
260 return NULL;
273 * @return whether more data can be read
277 return !$this->eof();
282 * @return line buffer
290 return $this->line;
294 * @return line number
297 * return the increased line number.
303 return $this->lnum;
314 * @return next line read from file and increase the line counter
328 return $this->line;
357 * @return current line
361 return current();