本文介绍下,用于获取文件扩展名的一段php代码,在php中获取扩展名,使用pathinfo()方法比较方便。有需要的朋友参考下。
在php中,可以很方便地从文件末尾取得文件的扩展名。 使用php函数pathinfo,可以做到这一点,在使用中注意文件的扩展名前的点号。 使用pathinfo()获取到的扩展名,是不包括点号的。 以下介绍二种获取文件扩展名的方法,分别如下。 方法1, <?php /*** example usage ***/ $filename = 'filename.blah.txt'; /*** get the path info ***/ $info = pathinfo($filename); /*** show the extension ***/ echo $info['extenstion']; ?> 登录后复制 方法二,与方法一基本相同,不过它使用字符串操作来得到扩展名,使用.号来作为分隔符。 代码: <?php /*** example usage ***/ $filename = 'filename.blah.txt'; echo getFileExtension($filename); /** * * @Get File extension from file name * * @param string $filename the name of the file * * @return string * **/ function getFileExtension($filename){ return substr($filename, strrpos($filename, '.')); } ?> 登录后复制 |