1.20.x stream_wrappers.inc | public BackdropLocalStreamWrapper::dir_opendir($uri, $options) |
Support for opendir().
Parameters
$uri: A string containing the URI to the directory to open.
$options: Unknown (parameter is not documented in PHP Manual).
Return value
TRUE on success.:
Overrides StreamWrapperInterface::dir_opendir
See also
http://php.net/manual/streamwrapper.dir-opendir.php
File
- includes/
stream_wrappers.inc, line 861 - Backdrop stream wrapper interface.
Class
- BackdropLocalStreamWrapper
- Backdrop stream wrapper base class for local files.
Code
public function dir_opendir($uri, $options) {
$this->uri = $uri;
$this->handle = opendir($this->getLocalPath());
return (bool) $this->handle;
}