SplFileInfo::getPathInfo
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getPathInfo — パスの SplFileInfo オブジェクトを取得する
説明
現在のファイルの親を表す SplFileInfo オブジェクトを取得します。
戻り値
ファイルの親のパスの SplFileInfo オブジェクトを返します。
失敗時に null
を返します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
class は、nullable になりました。
|
例
例1 SplFileInfo::getPathInfo() の例
<?php
$info = new SplFileInfo('/usr/bin/php');
$parent_info = $info->getPathInfo();
var_dump($parent_info->getRealPath());
?>
上の例の出力は、 たとえば以下のようになります。
string(8) "/usr/bin"
参考
- SplFileInfo::setInfoClass() - SplFileInfo::getFileInfo および SplFileInfo::getPathInfo で使用するクラスを設定する
+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