当前位置:Gxlcms > PHP教程 > php取得文件扩展名_PHP教程

php取得文件扩展名_PHP教程

时间:2021-07-01 10:21:17 帮助过:14人阅读

php取得文件扩展名

function GetFiletype($filename){
$filer=explode(".",$filename);
$count=count($filer)-1;
return strtolower(".".$filer[$count]);
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632004.htmlTechArticlephp取得文件扩展名 function GetFiletype($filename){ $filer=explode(.,$filename); $count=count($filer)-1; return strtolower(..$filer[$count]); }...

人气教程排行