SplFileInfo::__toString

(PHP 5 >= 5.1.2, PHP 7)
Returns the path to the file as a string
public void SplFileInfo::__toString ( void )

This method will return the file name of the referenced file.

Returns:

Returns the path to the file.

Examples:
SplFileInfo::__toString() example
1
2
3
4
5
6
7
8
9
<?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;
?>

The above example will output something similar to:

string(3) "foo"
foo
string(12) "/usr/bin/php"
/usr/bin/php 
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.