(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getPathInfo — 获取路径的 SplFileInfo 对象
成功时返回文件父路径的 SplFileInfo 对象,失败时返回 null
。
版本 | 描述 |
---|---|
8.0.0 |
class 现在可以为 null。 |
示例 #1 SplFileInfo::getPathInfo() 示例
<?php
$info = new SplFileInfo('/usr/bin/php');
$parent_info = $info->getPathInfo();
var_dump($parent_info->getRealPath());
?>
以上示例将输出类似于以下内容
string(8) "/usr/bin"