返回父目录的路径:
<?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 - 添加了级别范围 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!