public function PhpStreamWrapperInterface::dir_readdir in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::dir_readdir()
Read entry from directory handle.
This method is called in response to readdir().
Return value
string|false Should return string representing the next filename, or FALSE if there is no next file. Note, the return value will be casted to string.
See also
readdir()
http://php.net/manual/en/streamwrapper.dir-readdir.php
1 method overrides PhpStreamWrapperInterface::dir_readdir()
- LocalStream::dir_readdir in core/
lib/ Drupal/ Core/ StreamWrapper/ LocalStream.php - Read entry from directory handle.
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ PhpStreamWrapperInterface.php, line 57
Class
- PhpStreamWrapperInterface
- Defines a generic PHP stream wrapper interface.
Namespace
Drupal\Core\StreamWrapperCode
public function dir_readdir();