SplFileInfo::__toString

(PHP 5 >= 5.1.2)

SplFileInfo::__toStringReturns 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 the path to the file.

Приклади

Приклад #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;
?>

Наведений вище приклад виведе щось подібне до:

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

add a note add a note

User Contributed Notes 1 note

up
0
alvaro at demogracia dot com
8 years ago
It returns the exact $file_name string provided in the constructor, without further processing, normalisation or verification.
To Top