You are here

public function DrupalRemoteStreamWrapper::dirname in Remote Stream Wrapper 7

Gets the name of the directory from a given path.

This method is usually accessed through drupal_dirname(), which wraps around the PHP dirname() function because it does not support stream wrappers.

Parameters

$uri: A URI or path.

Return value

A string containing the directory name.

Overrides DrupalStreamWrapperInterface::dirname

See also

drupal_dirname()

File

./remote_stream_wrapper.inc, line 472

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

public function dirname($uri = NULL) {
  list($scheme, $target) = explode('://', $uri, 2);
  $dirname = dirname($target);
  if ($dirname == '.') {
    $dirname = '';
  }
  return $scheme . '://' . $dirname;
}