PHP » PYTHON |
login |
register |
about
|
import os os.path.basename(path) If you also need suffix removal: import os.path def basename ( path, suffix=None ): basename = os .path .basename ( path ) if suffix and basename .endswith ( suffix ): basename = basename[:-len(suffix)] return basename See also the Python documentation for os.path.basename which says: "Note that the result of the os.path.basename function is different from the Unix basename program; where basename for '/foo/bar/' returns 'bar', the basename() function returns an empty string ('')." basename(PHP 4, PHP 5) basename — Returns filename component of path Description
string basename
( string $path
[, string $suffix
] )
Given a string containing a path to a file, this function will return the base name of the file. Parameters
Return ValuesReturns the base name of the given path . Changelog
Examples
Example #1 basename() example
<?php
See Also
|
more
Recently updated
more
Most requested
more
Last requests
|