php截取后缀,php获取文件扩展名后缀的方法

方法一$filename = 'abc/centphp.com.jpg';

$ext = substr($filename, strrpos($filename, '.') + 1); //jpg

strrpos() 计算指定字符串在目标字符串中最后一次出现的位置

方法二$filename = 'abc/centphp.com.jpg';

$str = strrchr($filename, '.');//.jpg

$ext = substr(strrchr($filename, '.'), 1);//jpg

strrchr()查找指定字符在字符串中的最后一次出现,返回字符串中的一部分,这部分以搜索字符串最后出现位置开始,直到字符串末尾。

方法三$filename = 'centphp.com.jpg';

$str = strrchr($filename, '.');//.jpg

$ext = trim($str,'.');//jpg

方法四$filename = 'abc/centphp.com.jpg';

$arr_temp = explode('.',$filename);

$ext = end($arr_temp);//jpg

方法五$filename = 'abc/centphp.com.jpg';

$arr_temp = explode('.',$filename);

$ext = $arr_temp[count($arr_temp)-1];//jpg

方法六$filename = 'abc/centphp.com.jpg';

$ext = pathinfo($filename)['extension'];

方法七$filename = 'abc/centphp.com.jpg';

$ext = pathinfo($file, PATHINFO_EXTENSION);

方法八$filename = 'abc/centphp.com.jpg';

$ext = strrev(explode('.', strrev($filename))[0]);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值