当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > dirname() 函数
The dirname() function returns the directory name from a path.
dirname()函数的作用是:返回路径中的目录名称。
dirname(path) |
Parameter 参数 | Description 描述 |
---|---|
path | Required. Specifies the path to check 必要参数。指定路径 |
<?php echo dirname("c:/testweb/home.php") . "<br />"; echo dirname("/testweb/home.php"); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
c:/testweb /testweb |