public LocalStream::dir_rewinddir()
Support for rewinddir().
Return value
bool TRUE on success.
Overrides PhpStreamWrapperInterface::dir_rewinddir
See also
http://php.net/manual/streamwrapper.dir-rewinddir.php
File
- core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 548
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapper
Code
1 2 3 4 5 6 7 | public function dir_rewinddir() { rewinddir ( $this ->handle); // We do not really have a way to signal a failure as rewinddir() does not // have a return value and there is no way to read a directory handler // without advancing to the next file. return TRUE; } |
Please login to continue.