PHP json_decode为什么将json字符串转成数组是对象格式?

Posted 早上六点半遇见五月天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP json_decode为什么将json字符串转成数组是对象格式?相关的知识,希望对你有一定的参考价值。

eg.

$a=‘[{"img":"/uploads/agency/carimgs/5/15515954778091.jpg"},{"img":"/uploads/agency/carimgs/5/15515954774873.jpg"}]‘;

如果用json_decode($a),得到的是:

array (size=2)
  0 => 
    object(stdClass)[2]
      public ‘img‘ => string ‘/uploads/agency/carimgs/5/15515954778091.jpg‘ (length=44)
  1 => 
    object(stdClass)[3]
      public ‘img‘ => string ‘/uploads/agency/carimgs/5/15515954774873.jpg‘ (length=44)

可见,返回的结果是 object 而非 array。应以对象形式访问 ->

 

而对于json_decode这个函数

json_decode() 对JSON数据进行解码,转换为php变量
语法:json_decode ($json [,$assoc = false [, $depth = 512 [, $options = 0 ]]])
注意:1、$json 为待解码的数据,必须为utf8编码的数据;
   2、$assoc 值为TRUE时返回数组,FALSE时返回对象;
   3、$depth 为递归深度;
   4、$option 二进制掩码,目前只支持 JSON_BIGINT_AS_STRING;
   5、一般只用前面两个参数,如果要数据类型的数据要加一个参数true。

 

所以json_decode($a),就会得到

array (size=2)
  0 => 
    array (size=1)
      ‘img‘ => string ‘/uploads/agency/carimgs/5/15515954778091.jpg‘ (length=44)
  1 => 
    array (size=1)
      ‘img‘ => string ‘/uploads/agency/carimgs/5/15515954774873.jpg‘ (length=44)

 

以上是关于PHP json_decode为什么将json字符串转成数组是对象格式?的主要内容,如果未能解决你的问题,请参考以下文章

json_decode() (PHP 7) 中的新行和标签

PHP json_encode json_decode UTF-8

php json_decode失败,返回null

PHP 获取JSON json_decode返回NULL解决办法

PHP 获取JSON json_decode返回NULL解决办法

如何使用 PHP 将 JSON 字符串数据转换为数组?