Home >Backend Development >PHP Tutorial >PHP 获取文件扩展名(后缀名)的方法

PHP 获取文件扩展名(后缀名)的方法

WBOY
WBOYOriginal
2016-06-20 13:04:04996browse

本文将对 php 如何获取文件的扩展名,也即文件后缀名的方法做一个总结。这里只给出最正确的利用 php 获取文件扩展名(文件后缀名)的方法。

function get_extension($filename){<br />return pathinfo($filename,PATHINFO_EXTENSION);<br /><p>}</p>

函数中用到了 php 内置函数 pathinfo 这个函数,下面分析一下这个函数的意思和用法:定义和用法pathinfo() 函数以数组的形式返回文件路径的信息。

语法

pathinfo(path,options)

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

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

可能的值:

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

例如:

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

以上将输出如下结果:

Array(

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


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn