(PHP 5 >= 5.1.2, PHP 7)
SplFileInfo::getFilename — Gets the filename
public SplFileInfo::getFilename ( ) : string
Gets the filename without any path information.
This function has no parameters.
The filename.
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(0) "" string(7) "svn.php"
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/splfileinfo.getfilename.php