public function DrupalLocalStreamWrapper::dir_opendir

7.x stream_wrappers.inc public DrupalLocalStreamWrapper::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

drupal-7.x/includes/stream_wrappers.inc, line 709
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;
}