Home >Backend Development >PHP Tutorial >数组转换成JSON再转回后数组后无法读取数据

数组转换成JSON再转回后数组后无法读取数据

WBOY
WBOYOriginal
2016-06-06 20:28:071341browse

<code>$_POST = json_encode(array("a"=>"12345",'1','2'));
$json = $_POST;//接受
$char = json_decode($json);//解析
print_r($char);
echo $char['a'];</code>

测试里,如果数组使用字符来做key,经过转换后数组里的所有数据都不可以使用。
这是怎么回事?要怎么解决?

正式使用里是由app发送json数据过来,解析后返回数据库的。

回复内容:

<code>$_POST = json_encode(array("a"=>"12345",'1','2'));
$json = $_POST;//接受
$char = json_decode($json);//解析
print_r($char);
echo $char['a'];</code>

测试里,如果数组使用字符来做key,经过转换后数组里的所有数据都不可以使用。
这是怎么回事?要怎么解决?

正式使用里是由app发送json数据过来,解析后返回数据库的。

json_decode($json, true)
传递第二个参数, 值为 true, 就可以了.

数组转换成JSON再转回后数组后无法读取数据

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn