downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SplFileObject> <SplFileInfo::setInfoClass
[edit] Last updated: Fri, 24 Feb 2012

view this page in

SplFileInfo::__toString

(PHP 5 >= 5.1.2)

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

Descrição

public void SplFileInfo::__toString ( void )

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

Parâmetros

Esta função não contém parâmetros.

Valor Retornado

Returns the path to the file.

Exemplos

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

O exemplo acima irá imprimir algo similar a:

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



add a note add a note User Contributed Notes SplFileInfo::__toString
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites