程序员人生 网站导航

php取得文件扩展名

栏目:php教程时间:2014-01-11 01:08:03
  1. function GetFiletype($filename){ 
  2.  $filer=explode(".",$filename); 
  3.  $count=count($filer)-1; 
  4.  return strtolower(".".$filer[$count]); 
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐