function DrupalLocalStreamWrapper::dir_opendir
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 863 
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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
