SplFileInfo::getFilename

(PHP 5 >= 5.1.2, PHP 7)
Gets the filename
public string SplFileInfo::getFilename ( void )

Gets the filename without any path information.

Returns:

The filename.

Examples:
SplFileInfo::getFilename() example
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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" 
See also:

SplFileInfo::getBasename() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.