如何更改帝国CMS上传附件名为源文件名+随机码

上传以下图片:

修改方法

修改文件

/e/class/connect.php

查找

$r[filetype]=GetFiletype($file_name);

在下面加入

$filename2=str_replace($r[filetype], ”, $file_name);//获得去掉后缀的文件名

$mytype = array (“.txt”, “.rar”, “.zip”);//定义需要保留原名的文件类型

查找

$r[filename]=$r[insertfile].$r[filetype];

修改为

if(in_array($r[filetype],$mytype)){

$r[filename]=$filename2.”_”.$r[insertfile].$r[filetype];//将真实文件名加在随机码的前面中间以_分隔

}

else

{

$r[filename]=$r[insertfile].$r[filetype];

}

修改完成

$mytype = array (“.txt”, “.rar”, “.zip”);

这一句就是定义哪些文件类型需要加上源文件名的。

 

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。