SplFileInfo
PHP Manual

SplFileInfo::getPathname

(PHP 5 >= 5.1.2)

SplFileInfo::getPathnameGets the path to the file

説明

public string SplFileInfo::getPathname ( void )

Returns the path to the file.

パラメータ

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

返り値

The path to the file.

例1 SplFileInfo::getPathname() example

<?php
$info 
= new SplFileInfo('/usr/bin/php');
var_dump($info->getPathname());
?>

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

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

参考


SplFileInfo
PHP Manual