public LocalStream::dir_rewinddir()
Support for rewinddir().
bool TRUE on success.
Overrides PhpStreamWrapperInterface::dir_rewinddir
http://php.net/manual/streamwrapper.dir-rewinddir.php
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;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StreamWrapper!LocalStream.php/function/LocalStream::dir_rewinddir/8.1.x