php的json_decode不能正常转化

前端用get传json字符串
image.png
到后端变成:
image.png

而且将此值return 前端时没有发现异常,这个错误主要由前后端的编码差异造成
不能被json_decode转化:

此时需要使用:

image.png

才能正常转化为json对象;
方法详解: http://blog.csdn.net/linmufeng326/article/details/50895829

关于编码转化iconv方法:

http://www.pooy.net/around-php-json-decode-display-null.html

你可能感兴趣的:(php的json_decode不能正常转化)