程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ICEcoder顯示漢字出現亂碼的處理,icecoder亂碼

ICEcoder顯示漢字出現亂碼的處理,icecoder亂碼

編輯:關於PHP編程

ICEcoder顯示漢字出現亂碼的處理,icecoder亂碼


在網上看到icecoder這個小東西,是一個基於web的編輯器,很不錯。唯一的缺點是打開的文件中漢字會變成亂碼。

經查看源代碼,在lib/file-control.php中,第89行是:

echo '</script><textarea name="loadedFile" id="loadedFile">'.htmlentities($loadedFile).'</textarea><script>';

原來如此,htmlentities會把漢字變成亂碼,換成功能類似的htmlspecialchars:
echo '</script><textarea name="loadedFile" id="loadedFile">'.htmlspecialchars($loadedFile).'</textarea><script>';

問題解決,暫時沒有異常出現。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved