public function DrupalLocalStreamWrapper::dir_opendir in Drupal 7
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 857 - Drupal stream wrapper interface.
Class
- DrupalLocalStreamWrapper
- Drupal 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;
}