Home > php教程 > PHP源码 > body text

用五种不同的方式截取文件后缀名

PHP中文网
Release: 2016-05-25 17:12:34
Original
1323 people have browsed it

/**
 * 写出五种方式来获取文件后缀名称,一个非常容易考试的题目
*/
$filename = 'www.baidu.com/images/logo.png';
//第一种使用strrchr函数进行字符串的截取
echo substr(strrchr($filename,'.'),1); //先截取.后面的部分,然后再使用substr截取从1开始的字符串则可
//第二种方式使用pathinfo函数进行数组排列
$arr = pathinfo($filename);
echo $arr['extension'];
//第三种方式使用strrpos函数,查找最后一个.的位置然后再使用substr截取该长度
echo substr($filename,(strrpos($filename,'.')+1));
//巧妙的使用数组的方式进行获取
$ar = explode('.',$filename);
echo array_pop($ar);
//第五种则可使用正则表达式了
echo (preg_replace('/.*.(.*[^.].*)*/iU','\1',$filename)); //此函数非常好用,可以参考学习下。
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!