主頁 > 知識庫 > 解決dotproject中文名文件下載亂碼問題的解決方法

解決dotproject中文名文件下載亂碼問題的解決方法

熱門標(biāo)簽:貴陽ai外呼系統(tǒng) crm外呼系統(tǒng)好不好 重慶人工智能電銷機器人報價 強訊外呼系統(tǒng) 愛巢地圖標(biāo)注 智能電銷機器人廣告語 電話機器人批發(fā) 長春極信防封電銷卡公司 電銷外呼線路改不外呼線路
【問題】
文件管理,上傳中文文件名的文件,下載時候文件名出現(xiàn)亂碼。
【解決】
還是編碼問題,需要轉(zhuǎn)碼。
打開根目錄下的fileviewer.php文件,找到一下代碼:
復(fù)制代碼 代碼如下:

<?php
……
header('MIME-Version: 1.0');
header( 'Pragma: ');
header( 'Cache-Control: public');
header( 'Content-length: '.$file['file_size'] );
header( 'Content-type: '.$file['file_type'] );
header( 'Content-transfer-encoding: 8bit');
header( 'Content-disposition: attachment; filename="'.$file['file_name'].'"' );
……

修改為:
復(fù)制代碼 代碼如下:

<?php
……
header('MIME-Version: 1.0');
header( 'Pragma: ');
header( 'Cache-Control: public');
header( 'Content-length: '.$file['file_size'] );
header( 'Content-type: '.$file['file_type'] );
header( 'Content-transfer-encoding: 8bit');
header( 'Content-disposition: attachment; filename="'.iconv("UTF-8","gb2312",$file['file_name']).'"' );
……

標(biāo)簽:吳忠 上海 陜西 廣安 保定 內(nèi)蒙古 清遠 山南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解決dotproject中文名文件下載亂碼問題的解決方法》,本文關(guān)鍵詞  解決,dotproject,中文名,文件下載,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《解決dotproject中文名文件下載亂碼問題的解決方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于解決dotproject中文名文件下載亂碼問題的解決方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章