SplFileInfo::getPath
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getPath — ファイル名を除いたパスを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ファイルへのパスを返します。
例
例1 SplFileInfo::getPath() の例
<?php
$info = new SplFileInfo('/usr/bin/php');
var_dump($info->getPath());
$info = new SplFileInfo('/usr/');
var_dump($info->getPath());?>
上の例の出力は、 たとえば以下のようになります。
string(8) "/usr/bin" string(4) "/usr"
参考
- SplFileInfo::getRealPath() - ファイルへの絶対パスを取得する
- SplFileInfo::getFilename() - ファイル名を取得する
- SplFileInfo::getPathInfo() - パスの SplFileInfo オブジェクトを取得する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google