php多种方式获得文件扩展名

Posted 九尘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php多种方式获得文件扩展名相关的知识,希望对你有一定的参考价值。

/**
*
 * 五种方法获取文件扩展名
 **/
$file_name="aa.txt";
echo strrchr($file_name, ‘.‘);
echo ‘<hr/>‘;
echo substr($file_name, strrpos($file_name, ‘.‘));
echo ‘<hr/>‘;
$arr=explode(‘.‘,$file_name);
echo array_pop($arr);
echo ‘<hr/>‘;
echo pathinfo($file_name)[‘extension‘];
echo ‘<hr/>‘;
echo strrev(substr(strrev($file_name), 0, strpos(strrev($file_name), ‘.‘)));

 

以上是关于php多种方式获得文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章