You are here

public function ResourceReadOnlyStreamWrapper::dir_opendir in D7 Media 6

Support for opendir().

Parameters

$url: A string containing the url to the directory to open.

$options: Unknown (parameter is not documented in PHP Manual).

Return value

TRUE on success.

Overrides StreamWrapperInterface::dir_opendir

File

resource/ResourceReadOnlyStreamWrapper.inc, line 305

Class

ResourceReadOnlyStreamWrapper
A base class for Resource Stream Wrappers.

Code

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