PHP JSON格式的中文顯示問題解決方案_PHP

來源:互聯網
上載者:User
關鍵字 PHP JSON格式 中文顯示問題
返回json資料中文顯示的問題

上一篇文章中,返回json格式的中文顯示成\u5723\u8bde\u8282\u5343\u4e07\u597d\u793c\u5927\u5949\u9001

解決方案一:

代碼如下:


<?php
function Notice(){
include './include/conn.php'; //資料庫連結檔案
$sql_notice = mysql_query('SELECT * FROM gg_notice where enable = "1" limit 0,10');
$notice = mysql_fetch_array($sql_notice, MYSQL_ASSOC);
$str = json_encode($notice);
//linux
return preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2BE', 'UTF-8', pack('H4', '\\1'))", $str);
//windows
//return preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2LE', 'UTF-8', pack('H4', '\\1'))", $str);

}
?>

另外從網上搜尋到的其他方法

代碼如下:


<?php
/**
* json 產生,分析 支援中文
*/
class Json_Helper {
/**
* 產生json
*/
public static function encode($str){
$json = json_encode($str);
//linux
return preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2BE', 'UTF-8', pack('H4', '\\1'))", $json);
//windows
//return preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2LE', 'UTF-8', pack('H4', '\\1'))", $json);
}

/**
* 分析json
*/
public static function decode($str) {
return json_decode($str);
}
}
?>

這是從網上搜尋得到的又一篇相關文章

當使用php內建的json_encode對資料進行編碼時,中文都會變成unicode,導致不可讀。如:對字串”廈門“進行json_encode後,輸出的是"\u53a6\u95e8"。

查詢了一下,有兩種方法:
1.將"\u53a6\u95e8"還原成“廈門”,使用如下的代碼:

代碼如下:


$str= preg_replace("#\\\u([0-9a-f]+)#ie", "iconv('UCS-2', 'UTF-8', pack('H4', '\\1'))", $str);

2.先將中文欄位urlencode,json_encode後,再用urldecode,也可以顯示中文。

代碼如下:


$code = urldecode(json_encode(urlencode("廈門")));

PHP5.4版本,已經給Json新增了一個選項: JSON_UNESCAPED_UNICODE。加上這個選項後,就不會自動把中文編碼了。

代碼如下:


echo json_encode("廈門", JSON_UNESCAPED_UNICODE);


另,由於 json_encode 和 json_decode只支援utf-8編碼的字元,GBK的字元要用json就得轉換一下,附自己寫的GBK轉UTF-8的代碼:

代碼如下:


/*
字串GBK轉碼為UTF-8,數字轉換為數字。
*/
function ct2($s){
if(is_numeric($s)) {
return intval($s);
} else {
return iconv("GBK","UTF-8",$s);
}
}
/*
批量處理gbk->utf-8
*/
function icon_to_utf8($s) {

if(is_array($s)) {
foreach($s as $key => $val) {
$s[$key] = icon_to_utf8($val);
}
} else {
$s = ct2($s);
}
return $s;

}

echo json_encode(icon_to_utf8("廈門"));

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.