(PHP 5 >= 5.1.2)
SplFileInfo::getFilename — Gets the filename
Gets the filename without any path information.
この関数にはパラメータはありません。
The filename.
例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/anoncvs.php');
var_dump($info->getFilename());
?>
上の例の出力は、たとえば 以下のようになります。
string(7) "foo.txt" string(7) "foo.txt" string(0) "" string(11) "anoncvs.php"