在言会咸的博客转来的文章,尚有三种,我以前用过第二种。
<? //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]; } ?>end