爲什麼我的字符串在JSON中轉換爲UNICODE?JSON - 避免UNICODE轉換
保存在JSON作爲{"MyComment":"\u0113 "}
我想保存爲{"MyComment":"%C4%93"}
PHP:
$MyComment = $_GET["MyComment"];
print_r($MyComment); //%C4%93
$results = array (array(
"MyComment" => $MyComment,
));
$inp = file_get_contents('Test.json');
$arr = json_decode($inp);
$results = array_merge($results, $arr);
$fp_login = fopen('Test.json', w);
fwrite($fp_login, json_encode($results));
fclose($fp_login);
什麼是你的代碼? –
哪個字符集被使用? – mischaZeng
對不起,添加我的代碼] – SNos