GoLang SplFileInfo::__toString

request it (257)
GoLang replacement for PHP's SplFileInfo::__toString [edit | history]



Do you know a GoLang replacement for PHP's SplFileInfo::__toString? Write it!

PHP SplFileInfo::__toString

PHP original manual for SplFileInfo::__toString [ show | php.net ]

SplFileInfo::__toString

(PHP 5 >= 5.1.2, PHP 7)

SplFileInfo::__toStringReturns the path to the file as a string

Description

public void SplFileInfo::__toString ( void )

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

Parameters

This function has no parameters.

Return Values

Returns the path to the file.

Examples

Example #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;
?>

The above example will output something similar to:

string(3) "foo"
foo
string(12) "/usr/bin/php"
/usr/bin/php