function drupal_basename
7.x file.inc | drupal_basename($uri, $suffix = NULL) |
Gets the filename from a given path.
PHP's basename() does not properly support streams or filenames beginning with a non-US-ASCII character.
See also
http://bugs.php.net/bug.php?id=37738
basename()
Related topics
32 calls to drupal_basename()
- color_scheme_form_submit in drupal-7.x/
modules/ color/ color.module - Form submission handler for color_scheme_form().
- DrupalErrorCollectionUnitTest::assertError in drupal-7.x/
modules/ simpletest/ tests/ common.test - Assert that a collected error matches what we are expecting.
- DrupalLocalStreamWrapper::getLocalPath in drupal-7.x/
includes/ stream_wrappers.inc - Returns the canonical absolute path of the URI, if possible.
- DrupalLocalStreamWrapper::getMimeType in drupal-7.x/
includes/ stream_wrappers.inc - Base implementation of getMimeType().
- drupal_get_css in drupal-7.x/
includes/ common.inc - Returns a themed representation of all stylesheets to attach to the page.
File
- drupal-7.x/
includes/ file.inc, line 2318 - API for handling file uploads and server file management.
Code
function drupal_basename($uri, $suffix = NULL) {
$separators = '/';
if (DIRECTORY_SEPARATOR != '/') {
// For Windows OS add special separator.
$separators .= DIRECTORY_SEPARATOR;
}
// Remove right-most slashes when $uri points to directory.
$uri = rtrim($uri, $separators);
// Returns the trailing part of the $uri starting after one of the directory
// separators.
$filename = preg_match('@[^' . preg_quote($separators, '@') . ']+$@', $uri, $matches) ? $matches[0] : '';
// Cuts off a suffix from the filename.
if ($suffix) {
$filename = preg_replace('@' . preg_quote($suffix, '@') . '$@', '', $filename);
}
return $filename;
}