PHP获取文件扩展名
Posted mzhaox
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP获取文件扩展名相关的知识,希望对你有一定的参考价值。
1.
substr(strrchr("http://www.xxx.com/public/abc.jpg", ‘.‘), 1); string strrchr(‘string‘,‘needle‘) 获取字符串中出现指定字符串的最后位置到末尾的内容 int strrpos(‘string‘,‘needle‘) 获取字符串中出现指定字符串的最后位置 string substr(‘string‘,‘position‘) 从指定位置截取字符串到末尾 string strchr(‘string‘,‘needle‘) 获取字符串中出现指定字符串的最先位置到末尾的内容 int strpos(‘string‘,‘needle‘) 获取字符串中出现指定字符串的最先位置
2.
substr($path, strrpos($path, ‘.‘) + 1)
3.
array_pop(explode(‘.‘, $path))
4.
(pathinfo($path))[‘extension‘] pathinfo($path) 返回: ‘dirname‘ => string ‘http://www.baidu.com/public‘ (length=27) ‘basename‘ => string ‘abc.jpg‘ (length=7) ‘extension‘ => string ‘jpg‘ (length=3) ‘filename‘ => string ‘abc‘ (length=3)
以上是关于PHP获取文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章