您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1410 复制当前网址

pathinfo



PHP pathinfo() 函数

定义和用法

pathinfo() 函数以数组的形式返回文件路径的信息。


语法

pathinfo(path,options)

参数描述
path必需。规定要检查的路径。
process_sections

可选。规定要返回的数组元素。默认是 all。

可能的值:

  • PATHINFO_DIRNAME - 只返回 dirname

  • PATHINFO_BASENAME - 只返回 basename

  • PATHINFO_EXTENSION - 只返回 extension



说明

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

包括以下的数组元素:

  • [dirname]

  • [basename]

  • [extension]

提示和注释

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


例子

例子 1

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

输出:

Array
(
[dirname] => /testweb
[basename] => test.txt
[extension] => txt
)


例子 2

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

输出:

test.txt


文章来源:https://liqingbo.com/blog-629.html

上一篇:pclose

下一篇:parse_ini_file

评论