php中获取文件扩展名的n种方法小结

发布时间:2020-06-23编辑:脚本学堂
php获取文件扩展名的几种方法,php自定义函数取得文件扩展名的实例代码,供大家学习参考.

第1种方法:
 

复制代码 代码示例:
function get_extension($file)
{
substr(strrchr($file, '.'), 1);
}

第2种方法:
 

复制代码 代码示例:
function get_extension($file)
{
return substr($file, strrpos($file, '.')+1);
}

第3种方法:
 

复制代码 代码示例:
function get_extension($file)
{
return end(explode('.', $file));
}

第4种方法:
 

复制代码 代码示例:
function get_extension($file)
{
$info = pathinfo($file);
return $info['extension'];
}

第5种方法:
 

复制代码 代码示例:
function get_extension($file)
{
return pathinfo($file, PATHINFO_EXTENSION);
}

二、php文件扩展名获取函数

代码:
 

复制代码 代码示例:

<?php
$file = "/home/lvyaozu/backup_20080115.txt";

for($i=1; $i < 6; $i++) {
$func = 'get_file_ext_' . $i;
var_dump($func($file));
}

function get_file_ext_1($file) {
return strtolower(trim(substr(strrchr($file, '.'), 1)));
}

function get_file_ext_2($file) {
return strtolower(trim(pathinfo($file, PATHINFO_EXTENSION)));
}

function get_file_ext_3($file) {
return strtolower(trim(substr($file, strrpos($file, '.')+1)));
}

function get_file_ext_4($file) {
return strtolower(trim(array_pop(explode('.', $file))));
}

function get_file_ext_5($file) {
$tok = strtok($file, '.');
while($tok !== false) {
$return = $tok;
$tok = strtok('.');
}
return strtolower(trim($return));
}
?>