php中pathinfo()函数的用法介绍与例子

发布时间:2019-08-23编辑:脚本学堂
本文介绍下,有关php中pathinfo()函数的具体用法,及相关实例。有需要的朋友参考下吧。

pathinfo() 定义和用法
pathinfo() 函数以数组的形式返回文件路径的信息。

语法
pathinfo(path,options)

参数 描述
path 必需。规定要检查的路径。
process_sections 
可选。规定要返回的数组元素。默认是 all。

可能的值:
 

PATHINFO_DIRNAME - 只返回 dirname
PATHINFO_BASENAME - 只返回 basename
PATHINFO_EXTENSION - 只返回 extension

说明
pathinfo() 返回一个关联数组包含有 path 的信息。

包括以下的数组元素:
 

[dirname]
[basename]
[extension]

提示和注释
注释:如果不是要求取得所有单元,则 pathinfo() 函数返回字符串。

来看具体的例子。
例子:

<?php
print_r(pathinfo("/www/test.txt"));
?>

输出:
Array
(
[dirname] => /www
[basename] => test.txt
[extension] => txt
)

例2,

<?php
print_r(pathinfo("/www/test.txt",PATHINFO_BASENAME));
?>

输出:
test.txt