SplFileInfo
PHP Manual

SplFileInfo::getFilename

(PHP 5 >= 5.1.2)

SplFileInfo::getFilenameدریافت نام فایل

Description

public string SplFileInfo::getFilename ( void )

دریافت نام فایل بودن اطلاعات مسیر.

Parameters

This function has no parameters.

Return Values

نام فایل.

Examples

Example #1 مثال SplFileInfo::getFilename()

<?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
PHP Manual