public function DrupalLocalStreamWrapper::stream_eof in Drupal 7
Support for feof().
Return value
TRUE if end-of-file has been reached.
Overrides StreamWrapperInterface::stream_eof
See also
http://php.net/manual/streamwrapper.stream-eof.php
File
- includes/
stream_wrappers.inc, line 479 - Drupal stream wrapper interface.
Class
- DrupalLocalStreamWrapper
- Drupal stream wrapper base class for local files.
Code
public function stream_eof() {
return feof($this->handle);
}