Home  >  Article  >  Backend Development  >  json_decode的有关问题,请教怎么通过循环取值

json_decode的有关问题,请教怎么通过循环取值

WBOY
WBOYOriginal
2016-06-13 12:54:541117browse

json_decode的问题,请问如何通过循环取值?
通过$str=json_encode($data);把一个MYSQL表进行了json操作,
现在是想再通过json_decode($str)通过循环把每个字段的值显示出来,请问应该如何做?
不要使用var_dump,var_dump是显示出来所有格式,我只需要通过循环取每个字段的值,请帮忙


------解决方案--------------------
你是用foreach,然后发现无法遍历json_decode的结果吧?
这是因为json_decode默认返回的是个对象。所以无法直接foreach,但var_dump可以将他显示出来。

使用json_decode的第二个参数bool $assoc,将它设置为true,就会以关联数组形式返回了。可以foreach了。

$arr = json_decode($str, true);
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