zoukankan      html  css  js  c++  java
  • PHP json_decode object时报错Cannot use object of type stdClass as array

    PHP json_decode object时报错Cannot use object of type stdClass as array

    php再调用json_decode从字符串对象生成json对象时,如果使用[]操作符取数据,会得到下面的错误
    错误:
    Cannot use object of type stdClass as array

    产生原因:
    $res = json_decode($res);
    $res['key']; //把 json_decode() 后的对象当作数组使用。

    解决方法(2种):
    1、使用 json_decode($data, true)。就是使json_decode 的第二个变量设置为 true。
    2、json_decode($res) 返回的是一个对象, 不可以使用 $res['key'] 进行访问, 换成 $res->key 就可以了。

    参考手册:json_decode
    Return Values:Returns an object or if the optional assoc parameter is TRUE, an associative array is instead returned.

  • 相关阅读:
    算法导论————KMP
    KMP算法
    几个很好的OJ网站
    查找(二分、hash、桶)
    动态规划
    贪心(未完待续)
    搜索的题
    codeVS 1031 质数环
    《将博客搬至CSDN》
    HDU1717小数化分数2
  • 原文地址:https://www.cnblogs.com/zdz8207/p/5917921.html
Copyright © 2011-2022 走看看