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

PHP实现获取文件后缀名的几种常用方法

时间:2018-10-20 16:12:40      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:获取   color   后缀   turn   str   ext   get   file   bst   

方法1:

function get_file_type($filename){
  $type = substr($filename, strrpos($filename, ".")+1);
  return $type;
}

方法2:

function get_file_type($filename)
{
   $type = pathinfo($filename);
   $type = strtolower($type["extension"]);
   return $type;
}

方法3:

function get_file_type($filename)
{  
   $type =explode("." , $filename);
   $count=count($type)-1;
   return $type[$count];
}

PHP实现获取文件后缀名的几种常用方法

标签:获取   color   后缀   turn   str   ext   get   file   bst   

原文地址:https://www.cnblogs.com/sgm4231/p/9821711.html

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