php获取文件的扩展名的6种方法

昨天, 和一个朋友在php交流群(276167802, 验证:csl,有兴趣的话可以加入进来一起讨论)里提到php 获取文件的扩展名的6种方法,现在拿出来和大家分享一下:

1、字符串查找和截取的方法

$extension=substr(strrchr($file, ‘.’), 1);

2、字符串查找和截取的方法二

$extension=substr($file, strrpos($file, ‘.’)+1);

3、数组分割的方法

$extension=end(explode(‘.’, $file));

4、使用pathinfo直接解析的方法

$info = pathinfo($file);
$extension=$info[‘extension’];

5、使用pathinfo的第二个参数

$extension=pathinfo($file, pathinfo_extension);

6、使用finfo_file函数

$finfo = finfo_open(fileinfo_mime_type);
$extension = finfo_file($finfo, $file) ;
echo $extension;
finfo_close($finfo);

http://www.bkjia.com/phpjc/621640.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/621640.htmltecharticle昨天, 和一个朋友在php交流群(276167802, 验证:csl,有兴趣的话可以加入进来一起讨论)里提到 php 获取文件的扩展名的6种方法,现在拿出…

Posted in 未分类

发表评论