欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php 获取文件扩展名

程序员文章站 2022-05-21 07:57:41
...
php 获取文件扩展名
曾经需要获得简单地从一个文件末尾的文件扩展名?这可以与pathinfo()函数,但更

需要的是点在这种情况下也。虽然pathinfo()为扩展名,它不会返回点。想到那是在

一个php3早期版本中创建的这一职能,是保持和留给历史的目的。两种方法都提供了乐

趣。

/*** example usage ***/
$filename = 'filename.blah.txt';

/*** get the path info ***/
$info = pathinfo($filename);

/*** show the extension ***/
echo $info['extenstion'];

?>

第二种方法也基本相同以上,但使用字符串操作获得延长和争夺点(.)字符也。


/*** 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, '.'));
}
?>