1 stream_wrappers.inc public BackdropLocalStreamWrapper::dir_readdir()

Support for readdir().

Return value

The next filename, or FALSE if there are no more files in the directory.:

Overrides StreamWrapperInterface::dir_readdir

See also

http://php.net/manual/streamwrapper.dir-readdir.php

File

core/includes/stream_wrappers.inc, line 876
Backdrop stream wrapper interface.

Class

BackdropLocalStreamWrapper
Backdrop stream wrapper base class for local files.

Code

public function dir_readdir() {
  return readdir($this->handle);
}