目录

PHP dirname() 函数

❮ PHP 文件系统参考

示例

返回父目录的路径:

<?php
echo dirname("c:/testweb/home.html") . "<br />";
echo dirname("c:/testweb/home.html", 2) . "<br />";
echo dirname("/testweb/home.html");
?>

上面代码的输出将是:

c:/testweb
c:
/testweb


定义和用法

dirname() 函数返回父目录的路径。

语法

dirname( path, levels)

参数值

Parameter Description
path Required. Specifies a path to check
levels Optional. An integer that specifies the number of parent directories to go up. Default is 1


技术细节

返回值: 成功时父目录的路径
PHP 版本: 4.0+
二进制安全: 是的,在 PHP 5.0 中
PHP 变更日志: PHP 7.0 - 添加了级别范围

❮ PHP 文件系统参考