PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

php取得文件扩展名_PHP教程

原创
2016-07-13 10:58:25 675浏览

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]); }...
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。