php取得文件扩展名
程序员文章站
2022-04-29 21:26:12
...
php取得文件扩展名
function GetFiletype($filename){ $filer=explode(".",$filename); $count=count($filer)-1; return strtolower(".".$filer[$count]); }
本文地址:
转载随意,但请附上文章地址:-)