php获取文件扩展名

方法一、使用pathinfo函数

$file = "/path/to/file.xlsx";
$ext = pathinfo($file, PATHINFO_EXTENSION)
echo $ext;

以上代码输出:xlsx

方法二、使用explode函数

$file = "/path/to/file.xls";
$temArr = explode(".", $file);
$ext = end($temArr);
echo $ext;

以上代码输出:xls

上一篇:目标检测之dpm---hog的最优升级版


下一篇:C语言:oj3750bLue的大写L