PHP pathinfo() 函数
PHP pathinfo() 函数
定义和用法
pathinfo() 函数以数组的形式返回关于文件路径的信息。
返回的数组元素如下:
- [dirname]: 目录路径
- [basename]: 文件名
- [extension]: 文件后缀名
- [filename]: 不包含后缀的文件名
语法
pathinfo(path,options)
参数 | 描述 |
---|---|
path | 必需。规定要检查的路径。 |
options | 可选。规定要返回的数组元素。默认是 all。 可能的值:
|
提示和注释
注释:如果不是请求所有的元素,则 pathinfo() 函数返回字符串。
实例
实例 1
<?php
print_r(pathinfo("/testweb/test.txt"));
?>
上面的代码将输出:
Array ( [dirname] => /testweb [basename] => test.txt [extension] => txt [filename] => test )
实例 2
<?php
print_r(pathinfo("/testweb/test.txt",PATHINFO_BASENAME));
?>
上面的代码将输出:
test.txt
相关文章
- PHP 变量
- PHP 数据类型
- PHP 命名空间 namespace
- PHP array_column() 函数
- PHP array_filter() 函数
- PHP array_intersect_key() 函数
- PHP array_pad() 函数
- PHP array_product() 函数
- PHP array_push() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP arsort() 函数
- PHP current() 函数
- PHP natcasesort() 函数
- PHP next() 函数
- PHP uksort() 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP Error 和 Logging 函数