downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

SplFileInfo::getGroup> <SplFileInfo::getFileInfo
[edit] Last updated: Fri, 17 May 2013

view this page in

SplFileInfo::getFilename

(PHP 5 >= 5.1.2)

SplFileInfo::getFilenameGets the filename

Descrição

public string SplFileInfo::getFilename ( void )

Gets the filename without any path information.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The filename.

Exemplos

Exemplo #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());
?>

O exemplo acima irá imprimir algo similar à:

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

Veja Também



add a note add a note User Contributed Notes SplFileInfo::getFilename - [1 notes]
up
0
wloske at yahoo dot de
3 years ago
It should be mentioned that the function returns the name of the directory if "filename" is of type "directory". Hence

<?php
$info
= new SplFileInfo('/path/to/');
var_dump($info->getFilename());
?>

should return "to"

The function name is kind of misleading here and I am glad to have it tried.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites