SplFileInfo::getFilename
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getFilename — Gets the filename
Parameters
This function has no parameters.
Return Values
The filename.
Examples
Example #1 SplFileInfo::getFilename() example
<?php
$info = new SplFileInfo('foo.txt');
var_dump($info->getFilename());
$info = new SplFileInfo('/path/to/foo.txt');
var_dump($info->getFilename());
$info = new SplFileInfo('http://www.php.net/');
var_dump($info->getFilename());
$info = new SplFileInfo('http://www.php.net/svn.php');
var_dump($info->getFilename());
?>The above example will output something similar to:
string(7) "foo.txt" string(7) "foo.txt" string(11) "www.php.net" string(7) "svn.php"
See Also
- SplFileInfo::getBasename() - Gets the base name of the file
↑ and ↓ to navigate • Enter to select • Esc to close • / to open