PHP json编码与传统/简体中文字符

时间:2014-02-18 06:26:25

标签: php json chinese-locale

我有用PHP编码传统/简体中文字符的问题。我做了很多研究,但是

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

对我不起作用

2 个答案:

答案 0 :(得分:0)

在您网页的顶部上使用此代码:

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

答案 1 :(得分: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;

简体中文

将'big5'更改为'gbk'