array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'splfileinfo.getfilename.php', 1 => 'SplFileInfo::getFilename', 2 => 'Gets the filename', ), 'up' => array ( 0 => 'class.splfileinfo.php', 1 => 'SplFileInfo', ), 'prev' => array ( 0 => 'splfileinfo.getfileinfo.php', 1 => 'SplFileInfo::getFileInfo', ), 'next' => array ( 0 => 'splfileinfo.getgroup.php', 1 => 'SplFileInfo::getGroup', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splfileinfo/getfilename.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getFilename — Gets the filename
Gets the filename without any path information.
Diese Funktion besitzt keine Parameter.
The filename.
Beispiel #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());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
string(7) "foo.txt" string(7) "foo.txt" string(0) "" string(7) "svn.php"