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

search for in the

SplFileInfo::getSize> <SplFileInfo::getPerms
Last updated: Fri, 13 Nov 2009

view this page in

SplFileInfo::getRealPath

(PHP 5 >= 5.2.2)

SplFileInfo::getRealPathファイルへの絶対パスを取得する

説明

public string SplFileInfo::getRealPath ( void )

このメソッドは、すべてのシンボリックリンクを展開して相対参照を解決し、 ファイルへの実際のパスを返します。

パラメータ

この関数にはパラメータはありません。

返り値

ファイルへのパスを返します。

例1 SplFileInfo::getRealPath() の例

<?php
$info 
= new SplFileInfo('/..//./../../'.__FILE__);
var_dump($info->getRealPath());

$info = new SplFileInfo('/tmp');
var_dump($info->getRealPath());
?>

上の例の出力は、 たとえば以下のようになります。

string(28) "/private/tmp/phptempfile.php" 
string(12) "/private/tmp"

参考



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

SplFileInfo::getSize> <SplFileInfo::getPerms
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites