PHP获取文件后缀名的三种方法

如下:

PHP获取文件后缀名的三种方法
<? 
PHP获取文件后缀名的几种方法1: 
function get_file_type($filename){ 
$type = substr($filename, strrpos($filename, ".")+1); 
return $type; 
} 
PHP获取文件后缀名的几种方法2: 
function get_file_type($filename) 
{ 
$type = pathinfo($filename); 
$type = strtolower($type["extension"]); 
return $type; 
} 
PHP获取文件后缀名的几种方法3: 
function get_file_type($filename) 
{ 
$type =explode("." , $filename); 
$count=count($type)-1; 
return $type[$count]; 
} 
?>
PHP获取文件后缀名的三种方法

PHP获取文件后缀名的三种方法,布布扣,bubuko.com

PHP获取文件后缀名的三种方法

上一篇:《大型网站技术架构》读书笔记[2] - 架构的模式


下一篇:推荐两本NodeJS的学习书籍