DrupalStreamWrapperInterface::dirname

7 stream_wrappers.inc public DrupalStreamWrapperInterface::dirname($uri = NULL)

Gets the name of the directory from a given path.

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

Parameters

$uri: An optional URI.

Return value

A string containing the directory name, or FALSE if not applicable.

See also

drupal_dirname()

File

includes/stream_wrappers.inc, line 219
Drupal stream wrapper interface.

Code

public function dirname($uri = NULL);
Login or register to post comments