Home  >  Article  >  Backend Development  >  php取得文件扩展名_PHP教程

php取得文件扩展名_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:58:25800browse

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]); }...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php分页代码_PHP教程Next article:无刷新登陆_PHP教程