1. 程式人生 > >dede上傳文件亂碼問題解決

dede上傳文件亂碼問題解決

sele convert 圖片 文件亂碼 image 一句話 clu name soft

修改下列兩個文件:

/include/dialog/select_soft_post.php
/include/dialog/select_soft.php

改:

select_soft.php文件第108行後面添加一句話:

$file = mb_convert_encoding($file,‘UTF-8‘,‘GBK‘);

技術分享圖片

select_soft_post.php文件第73行後面添加一句話:

$fullfilename = mb_convert_encoding($fullfilename,‘GBK‘,‘UTF-8‘);

技術分享圖片

dede上傳文件亂碼問題解決