当前位置:首页 > PHP教程 > php函数 > 列表

php取得文件扩展名

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-11 13:15:26 浏览: 评论:0 
  1. function GetFiletype($filename){ 
  2.  $filer=explode(".",$filename); 
  3.  $count=count($filer)-1; 
  4.  return strtolower(".".$filer[$count]); 

Tags: php 取得 文件 扩展名

分享到: