由於朋友的站上想用 chatspot ,最近我開始研究怎麼將這聊天室中文化
Chatspot 第一個問題就是無法用中文對話,Chatspot 官方網站有如下的建議:
修改 chatspot/includes/interpreter_class.php
尋找
代碼: 選擇全部
'message' => htmlspecialchars(htmlentities(trim($vars['message']))),
'colour' => htmlspecialchars(htmlentities(trim($vars['colour']))), 改為:
代碼: 選擇全部
'message' => trim($vars['message']),
'colour' => trim($vars['colour']), 

