第一个采用substr和strrchr函数; 第二个采用pathinfo函数; 第三个采用substr和strrpos函数; 第四个采用array_pop和explode函数; 第五个采用strtok函数; <?php $file = "lvyaozu.backup.zIp"; 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)); } ?>