君山 发表于 2020-9-29 11:51:42

Discuz fileext 函数 获取文件扩展名


// 获取文件扩展名
function fileext($filename) {
        return addslashes(strtolower(substr(strrchr($filename, '.'), 1, 10)));
}

页: [1]
查看完整版本: Discuz fileext 函数 获取文件扩展名