PHP Doku:: Gets the filename - splfileinfo.getfilename.html

Verlauf / Chronik / History: (6) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)DateibehandlungThe SplFileInfo classSplFileInfo::getFilename

Ein Service von Reinhard Neidl - Webprogrammierung.

The SplFileInfo class

<<SplFileInfo::getFileInfo

SplFileInfo::getGroup>>

SplFileInfo::getFilename

(PHP 5 >= 5.1.2)

SplFileInfo::getFilenameGets the filename

Beschreibung

public string SplFileInfo::getFilename ( void )

Gets the filename without any path information.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The filename.

Beispiele

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
wloske at yahoo dot de
19.10.2009 18:12
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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)