複製程式碼 程式碼如下:
$file = "/home/lvyaozu/backup_20080115.txt
for($i=1; $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, 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));
}
?>
本文來自CSDN博客,轉載請標示出處:http: //blog.csdn.net/lvyaozu/archive/2009/06/03/4237628.aspx
以上就介紹如何顯示檔案副檔名 PHP 檔案副檔名 取得函數,包含如何顯示檔案副檔名方面的內容,希望對PHP教學有興趣的朋友有所幫助。