SplFileInfo::__toString
Returns the path to the file as a string
Beschreibung
public void SplFileInfo::__toString
( void
)
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
Returns the path to the file.
Beispiele
Beispiel #1 SplFileInfo::__toString example
<?php
$info = new SplFileInfo('foo');
var_dump($info->__toString());
echo $info.PHP_EOL;
$info = new SplFileInfo('/usr/bin/php');
var_dump($info->__toString());
echo $info.PHP_EOL;
?>
Das oben gezeigte Beispiel erzeugt
eine ähnliche Ausgabe wie:
string(3) "foo"
foo
string(12) "/usr/bin/php"
/usr/bin/php