时间:2021-07-01 10:21:17 帮助过:18人阅读
第一种
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') 获取字符串中出现指定字符串的最先位置第二种
substr($path, strrpos($path, '.') + 1)第三种
array_pop(explode('.', $path))第四种
(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中文网!
相关推荐:
对于PHP面向对象设计五大原则(SOLID)的总结
对于PhpStorm代码格式化设置的介绍
以上就是如何通过PHP获取文件扩展名的详细内容,更多请关注Gxl网其它相关文章!