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/