首页  >  问答  >  正文

PHP中获取文件扩展名?

男神男神2883 天前1018

全部回复(2)我来回复

  • 数据分析师

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

    PHP中获取文件扩展名?-PHP中文网问答-PHP中获取文件扩展名?-PHP中文网问答

    围观一下哦,学习一下。

    回复
    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
  • 取消回复