PHP dirname() 函数
PHP dirname() 函数
完整的 PHP Filesystem 参考手册定义和用法
dirname() 函数返回路径中的目录名称部分。
语法
dirname(path)
参数 | 描述 |
---|---|
path | 必需。规定要检查的路径。 |
实例
<?php
echo dirname("c:/testweb/home.php") . "<br />";
echo dirname("/testweb/home.php");
?>
echo dirname("c:/testweb/home.php") . "<br />";
echo dirname("/testweb/home.php");
?>
上面的代码将输出:
c:/testweb
/testweb
/testweb
完整的 PHP Filesystem 参考手册
相关文章
- PHP echo 和 print 语句
- PHP 数据类型
- PHP 面向对象
- PHP $_GET 变量
- PHP 高级过滤器
- PHP array_column() 函数
- PHP array_diff_key() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_first() 函数
- PHP array_merge() 函数
- PHP array_merge_recursive() 函数
- PHP array_multisort() 函数
- PHP array_pop() 函数
- PHP array_splice() 函数
- PHP array_uintersect() 函数
- PHP end() 函数
- PHP sizeof() 函数
- PHP uasort() 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数