码迷,mamicode.com
首页 > Web开发 > 详细

php 获取后缀的几种方法

时间:2014-08-11 14:47:52      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   cti   div   log   

1:
function get_extension($file){
  substr(strrchr($file, ‘.‘), 1);
}
2:
function get_extension($file){
  return substr($file, strrpos($file, ‘.‘)+1);
}
3:
function get_extension($file){
  return end(explode(‘.‘, $file));
}
4:
function get_extension($file){
  $info = pathinfo($file);
  return $info[‘extension‘];
}
5:
function get_extension($file){
  return pathinfo($file, PATHINFO_EXTENSION);
}

 

php 获取后缀的几种方法,布布扣,bubuko.com

php 获取后缀的几种方法

标签:style   blog   color   os   io   cti   div   log   

原文地址:http://www.cnblogs.com/LoveJulin/p/3904549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!