PHP 文件擴展名 獲取函數
更新時間:2009年06月03日 01:48:33 作者:
有時候我們需要獲取文件的擴展名,分類文件等原因,下面是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));
}
?>
本文來自CSDN博客,轉載請標明出處:http://blog.csdn.net/lvyaozu/archive/2009/06/03/4237628.aspx
相關文章
shopex主機報錯誤請求解決方案(No such file or directory)
最近vps客戶和服務托管客戶安裝了shopex網店系統(tǒng),他們的主機都報錯,錯誤特點一樣,針對這個錯誤我司技術推出shopex主機報錯誤請求解決方案,希望能給予各位一點幫助2011-12-12

