開發環境: 全部文件編碼爲GBK、ajax提交中文到sms.php、sms.php返回中文jsonphp
一、首先勾選要發送的用戶,而後點擊發送短信,輸入中文,點擊確認後將電話號碼和中文字符ajax提交到sms.php。 sms.php $_POST獲取中文亂碼 html
開始的時候在ajax請求的時候加入了contentType: "application/x-www-form-urlencoded;charset=gbk"mysql
然而並無什麼卵用,傳過去的中文字符仍然utf8.git
$.ajax({type: "POST",dataType:'json',url: url,data: {uids:uids,msg: sms_cont},
contentType: "application/x-www-form-urlencoded;charset=gbk",
success: function(data){
layer.closeAll();
if(data.status==1){
layer.msg(data.info,{ offset: '300px',time:3000});
}else{
layer.msg(data.info,{ offset: '300px',time:3000});
}
},
error:function(XMLHttpRequest, textStatus, errorThrown){
// debugging(myDialog,url,XMLHttpRequest,textStatus,errorThrown,'subOK');
}
});
解決辦法:使用iconv轉碼 ajax
$content = ($_POST["msg"]); $content = htmlspecialchars(iconv("UTF-8","GB2312//IGNORE",$content),ENT_COMPAT,'ISO-8859-1');
二、sms.php返回json數組(含中文) ------ 返回json中文亂碼sql
開始用瞭如下方法json
header("Content-Type: text/html; charset=gbk");//設置文件類型爲utf8 mysql_set_charset('gbk');//設置數據源格式爲utf8 $json = json_encode($data,JSON_UNESCAPED_UNICODE);//把數據轉換爲JSON數據
依然沒用。數組
摘自網絡:當使用php自帶的json_encode對數據進行編碼時,中文都會變成unicode,致使不可讀。網絡
解決方案:app
下載php FastJSON.class.php 使用起convert方法返回json便可
(https://git.oschina.net/yuji/php_common_class下載連接)
$rs = array(
"status"=>0,
"info"=>"短信餘額不足 <br>剩餘{$result_0}條",
);
echo FastJSON::convert($rs);
exit;