我已经从android接收了json数据,只是得到了unicode chracaters序列:
\u0628\u0647\u0645\u0646
如何通过字符为阿拉伯字符的方式将其转换为utf8。
答案 0 :(得分:0)
只需使用json_decode()
即可$json = '{
"Arabic": "\u0628\u0647\u0645\u0646"
}';
$json_decode = json_decode($json, true);
print_r($json_decode);
输出:
Array
(
[Arabic] => بهمن
)