php8.5
Home/ Manual/ spl / splfileinfo/ SplFileInfo::getFilename

SplFileInfo::getFilename

PHP function Edit on GitHub ✎

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

Gets the filename

Description

SplFileInfo::getFilename(): string

Gets the filename without any path information.

Parameters Parameters

Return Values

The filename.

Examples

SplFileInfo::getFilename() example

php
<?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:

output
string(7) "foo.txt"
string(7) "foo.txt"
string(11) "www.php.net"
string(7) "svn.php"

See Also

  • SplFileInfo::getBasename

Source: reference/spl/splfileinfo/getfilename.xml · from the official PHP manual (php/doc-en)