public function PhpStreamWrapperInterface::dir_readdir in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::dir_readdir()
- 9 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()
- DummyExternalReadOnlyWrapper::dir_readdir in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyExternalReadOnlyWrapper.php - @inheritDoc
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();