【问题标题】:CodeIgniter uploads files with duplicate file extensionsCodeIgniter 上传具有重复文件扩展名的文件
【发布时间】:2011-02-01 04:29:10
【问题描述】:

CodeIgniter 在使用其上传库时会复制文件扩展名的任何明显原因?尝试了各种方法来设置文件名(带和不带扩展名),但似乎没有任何效果。有什么建议吗?

【问题讨论】:

标签: codeigniter upload


【解决方案1】:

我之前也遇到过同样的问题(不知道为什么,因为它肯定不会出现在我的所有项目中)。以下为我修复了它(其中 $file_name 是文件名):

$ext = end(explode('.',$file_name)); 
$config['file_name'] = basename($file_name,'.'.$ext);

【讨论】:

    猜你喜欢
    • 2015-02-18
    • 1970-01-01
    • 2017-02-23
    • 2014-03-02
    • 2016-07-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多