PHP头条
热点:

php取得文件扩展名


php取得文件扩展名

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

www.phpzy.comtrue/php/25235.htmlTechArticlephp取得文件扩展名 php取得文件扩展名 function GetFiletype($filename){ $filer=explode(.,$filename); $count=count($filer)-1; return strtolower(..$filer[$count]); }...

相关文章

    暂无相关文章

PHP之友评论

今天推荐