PHP实现获取文件后缀名的几种常用方法

这篇文章主要介绍了PHP实现获取文件后缀名的几种常用方法,通过三种不同的方法实例分析了php获取文件后缀名的实现技巧,分别通过字符串、文件属性及数组等方式实现这一功能,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP实现获取文件后缀名的几种常用方法。分享给大家供大家参考。具体如下:

方法1:

function get_file_type($filename){ $type = substr($filename, strrpos($filename, ".")+1); return $type; }

方法2:

function get_file_type($filename) { $type = pathinfo($filename); $type = strtolower($type["extension"]); return $type; }

方法3:

function get_file_type($filename) { $type =explode("." , $filename); $count=count($type)-1; return $type[$count]; }

希望本文所述对大家的php程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/da58c1664e416008243a681a2f62cea3.html