때때로 파일 확장자를 구하고, 파일을 분류하는 등의 작업이 필요합니다. 다음은 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!