【转】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]; } ?>

end

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/7819.html