Get file extension in php_PHP tutorial

WBOY
Release: 2016-07-13 10:58:25
Original
915 people have browsed it

php gets file extension

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632004.htmlTechArticlephp get file extension function GetFiletype($filename){ $filer=explode(.,$filename); $ count=count($filer)-1; return strtolower(..$filer[$count]); }...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template