[備忘]在PHP中強制傳送big5編碼給jquery xhr解讀
今天幫一支舊程式改成使用jquery的方式去request 一個網頁,因為網站是之前寫的還沿用big5編碼!
使得Jquery在傳送資料時解讀成亂碼!
在request 的頁面中加上
[sourcecode language=”html” firstline=”1″ padlinenumbers=”false”]
<meta http-equiv="Content-Type" content="text/html; charset=big5" />
[/sourcecode]
也沒有用!
所以只好用header強制改成使用big5傳!
[sourcecode language=”php” firstline=”1″ padlinenumbers=”false”]
header(‘Content-type: text/plain; charset=big5’);
[/sourcecode]