You are here

public function DrupalRemoteStreamWrapper::dir_opendir in Remote Stream Wrapper 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/en/streamwrapper.dir-opendir.php

File

./remote_stream_wrapper.inc, line 404

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

public function dir_opendir($uri, $options) {
  return FALSE;
}