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.
SplFileInfo::getFilename
(PHP 5 >= 5.1.2)
SplFileInfo::getFilename — Obtiene el nombre del fichero
Descripción
public string SplFileInfo::getFilename
( void
)
Obtiene el nombre del fichero sin ningún tipo de información de la ruta de acceso.
Parámetros
Esta función no tiene parámetros.
Valores devueltos
El nombre del fichero.
Ejemplos
Ejemplo #1 SplFileInfo::getFilename() ejemplo
<?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());
?>
El resultado del ejemplo sería algo similar a:
string(7) "foo.txt" string(7) "foo.txt" string(0) "" string(7) "svn.php"
wloske at yahoo dot de ¶
3 years ago
