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

search for in the

SplFileObject> <SplFileInfo::setInfoClass
[edit] Last updated: Fri, 24 Jun 2011

view this page in

SplFileInfo::__toString

(PHP 5 >= 5.1.2)

SplFileInfo::__toStringبازگرداندن مسیر فایل به عنوان رشته

Description

public void SplFileInfo::__toString ( void )

این متد نام فایل در فایل ارجاعی را بازمی‌گرداند.

Parameters

This function has no parameters.

Return Values

بازگرداندن مسیر فایل.

Examples

Example #1 مثال SplFileInfo::__toString()

<?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 



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

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