public FileSystemInterface::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
- PHP wrapper functions
- Functions that are wrappers or custom implementations of PHP functions.
File
- core/lib/Drupal/Core/File/FileSystemInterface.php, line 134
Class
- FileSystemInterface
- Provides an interface for helpers that operate on files and stream wrappers.
Namespace
Drupal\Core\File
Code
public function basename($uri, $suffix = NULL);
Please login to continue.