>  Q&A  >  본문

PHP中获取文件扩展名?

男神男神2883일 전1016

모든 응답(2)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-09-30 23:15:05

    PHP에서 파일 확장자를 얻으시겠습니까? -PHP 중국어 웹사이트 Q&A-PHP에서 파일 확장자를 얻으시겠습니까? -PHP 중국어 홈페이지 Q&A

    꼭 보고 배워보세요.

    회신하다
    0
  • 迷茫

    迷茫2016-12-20 16:49:58

    第1种方法:
    function get_extension($file){
        substr(strrchr($file, '.'), 1);
    }
    第2种方法:
    function get_extension($file){
        return substr($file, strrpos($file, '.')+1);
    }
    第3种方法:
    function get_extension($file){
        return end(explode('.', $file));
    }
    第4种方法:
    function get_extension($file){
        $info = pathinfo($file);
        return $info['extension'];
    }
    第5种方法:
    function get_extension($file){
        return pathinfo($file, PATHINFO_EXTENSION);
    }

    회신하다
    1
  • 취소회신하다