有時候我們需要取得檔案的副檔名,分類檔案等原因,以下是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)); } ?>
以上是php 取得檔案副檔名的函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!