Heim  >  Artikel  >  Backend-Entwicklung  >  php 接收 Android 传递的json 转 数组 问题,androidjson_PHP教程

php 接收 Android 传递的json 转 数组 问题,androidjson_PHP教程

WBOY
WBOYOriginal
2016-07-12 08:51:241146Durchsuche

php 接收 Android 传递的json 转 数组 问题,androidjson

过程:Android  拼接一个 json格式的数据 传值  ,php 接收 转为数组  json_decode   取值

 

json格式为:{"goods":{"100075":{"content":"哈哈"},"53":{"content":"真的吗"},"50":{"content":"是不是"}}}

由于Android  通过 toString 传 会转义 其中的 “”  

{"goods":{"100075":{"content":"哈哈"},"53":{"content":"真的吗"},"50":{"content":"是不是"}}}

 

所以  php 需要  转回去    htmlspecialchars_decode()    这样,得到的再  json_decode 就没问题了。

记得  json_decode($arr,true);  第二个参数为true

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1130482.htmlTechArticlephp 接收 Android 传递的json 转 数组 问题,androidjson 过程:Android 拼接一个 json格式的数据 传值 ,php 接收 转为数组 json_decode 取值 json格式为:...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn