PHP中获取文件扩展名?
男神
男神 2016-12-20 16:48:46
0
2
982
男神
男神

╰つ ゛思 绪 万 千 , 不 如 努 力 向 前 .ヽ

reply all(2)
数据分析师

Get file extension in PHP? -PHP Chinese website Q&A-Get file extension in PHP? -PHP Chinese website Q&A

Please watch and learn.

迷茫

第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);
}

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!