>php教程 >php手册 >用php获取文件扩展名

用php获取文件扩展名

WBOY
WBOY원래의
2016-06-06 19:57:291019검색

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 用php获取文件扩展名的方法总结,可能不是很全,都是一些常规的方法 ?php //操作的文件 $file = “/Linux/UploadFiles_7565/201211/20121126215424875.gif”; function getext_1($file) { return strto

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    用php获取文件扩展名的方法总结,可能不是很全,都是一些常规的方法

   

    //操作的文件

    $file = “/Linux/UploadFiles_7565/201211/20121126215424875.gif”;

    function getext_1($file) {

    return strtolower(trim(substr(strrchr($file, '.'), 1)));

    }

    function getext_2($file) {

    return strtolower(trim(pathinfo($file, PATHINFO_EXTENSION)));

    }

    function getext_3($file) {

    return strtolower(trim(substr($file, strrpos($file, '.')+1)));

    }

    function getext_4($file) {

    return strtolower(trim(array_pop(explode('.', $file))));

    }

    function getext_5($file) {

    $tok = strtok($file, '.');

    while($tok !== false) {

    $return = $tok;

    $tok = strtok('.');

    }

    return strtolower(trim($return));

    }

    ?>

用php获取文件扩展名

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.