/** * 获取文件名后缀 * * @author 编程之家 jb51.cc jb51.cc **/ function getFileSuffix($fileName) { return strtolower(pathinfo($fileName,PATHINFO_EXTENSION)); }