2014-02-18 47 views

回答

0

發現了以下的答案對我的作品。

中國傳統

mysql_set_charset('big5'); 
    header("content-type:text/html; charset=big5"); 

    $stack = array(); 
    $data = array("id" => $row[0], "name" => urlencode("臺灣")); 
    array_push($stack, $data); 
    $json = urldecode(json_encode($stack)); 
    echo $json; 

簡體中國

變化的 '中文' 到 'GBK'

0

使用上你的頁面的頂部驗證碼:

header('Content-Type: text/html; charset=utf-8');