------解决方案--------------------echo json_decode('"\u6784"');//构
------解决方案--------------------
你确定这样可行?我测试的返回的是null
我的作法是拼成json串,然后decode
$string = '\u6784';
$json_str = '{"str":"'.$string.'"}';
var_dump(json_decode($json_str, 1));
------解决方案--------------------不要怀疑人家的诚意
你的代码的运行结果:
'str' => string '构' (length=3)
------解决方案--------------------用json_decode解Unicode 高