SplFileInfo::getFilename

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

SplFileInfo::getFilenameGets the filename

说明

publicSplFileInfo::getFilename(): string

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/svn.php');
var_dump($info->getFilename());
?>

以上示例的输出类似于:

string(7) "foo.txt" string(7) "foo.txt" string(0) "" string(7) "svn.php"

参见

To Top