You are here

public function LocalStream::dir_readdir in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::dir_readdir()

Support for readdir().

Return value

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

Overrides PhpStreamWrapperInterface::dir_readdir

See also

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

File

core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 540

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

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