public function LocalStream::dirname in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::dirname()
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
string $uri: A URI or path.
Return value
string A string containing the directory name.
Overrides StreamWrapperInterface::dirname
See also
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ LocalStream.php, line 417 - Contains \Drupal\Core\StreamWrapper\LocalStream.
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapperCode
public function dirname($uri = NULL) {
list($scheme) = explode('://', $uri, 2);
$target = $this
->getTarget($uri);
$dirname = dirname($target);
if ($dirname == '.') {
$dirname = '';
}
return $scheme . '://' . $dirname;
}