首页 > 语言 > PHP > 正文

php取得文件扩展名

2024-09-04 11:48:00
字体:
来源:转载
供稿:网友
  1. function GetFiletype($filename){ 
  2.  $filer=explode(".",$filename); 
  3.  $count=count($filer)-1; 
  4.  return strtolower(".".$filer[$count]); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表