本文介紹下,如何修改dedecms上傳文件自動重命名的方法,有需要的朋友,可以參考下。
1、打開/include/dialog/select_soft_post.php
找到大約40行:
<span style="font-family: 'courier new', courier; font-size: 13px;">$filename = $cuserLogin->getUserID().'_'.MyDate('dHis',$nowtme);
</span>
修改為:
<span style="font-family: 'courier new', courier; font-size: 13px;">$filename = $uploadfile_name;
</span>
再找到約47行:
<span style="font-family: 'courier new', courier; font-size: 13px;">$filename = $filename.'.'.$fs[count($fs)-1];
</span>
修改為:
<span style="font-family: 'courier new', courier; font-size: 13px;">$filename = $filename.'.'.$fs[count($fs)-1];
</span>
完成以上二步,以后上傳圖片,就可以實現自動重命名了。