當(dāng)前位置:首頁(yè) > IT技術(shù) > Web編程 > 正文

php 獲取文件后綴的幾種方法
2021-09-11 10:34:18

1、

$file = 'x.y.z.png';
echo substr(strrchr($file, '.'), 1);
  • strrchr() 函數(shù)查找字符串在另一個(gè)字符串中最后一次出現(xiàn)的位置,并返回從該位置到字符串結(jié)尾的所有字符。

2、

$file = 'x.y.z.png';
echo substr($file, strrpos($file, '.')+1);
  • 查找 "." 在字符串中最后一次出現(xiàn)的位置

3、

$file = 'x.y.z.png';
$arr=explode('.', $file);
echo $arr[count($arr)-1];

4、

$file = 'x.y.z.png';
$arr=explode('.', $file);
echo end($arr);  //end()返回?cái)?shù)組的最后一個(gè)元素

5、

$file = 'x.y.z.png';
echo strrev(explode('.', strrev($file))[0]);

6、

$file = 'x.y.z.png';
echo pathinfo($file)['extension'];

7、

$file = 'x.y.z.png';
echo pathinfo($file, PATHINFO_EXTENSION);

本文摘自 :https://www.cnblogs.com/

開(kāi)通會(huì)員,享受整站包年服務(wù)立即開(kāi)通 >