/** * 获取文件扩展名 * * @param * @author 编程之家 jb51.cc jb51.cc **/ $file = '/path/to/file.PHP'; $info = pathinfo($file); echo $info['extension'];