public function DrupalLocalStreamWrapper::stream_eof

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

drupal/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);
}