PHP:Cannot use object of type stdClass as array

简介: PHP:Cannot use object of type stdClass as array

json数据

$json = '{"name": "Tom", "age": 23}';

反序列化方式一:

$data = json_decode($json);
// 取值方式
// 错误
// print_r($data['name']);
// Cannot use object of type stdClass as array
// 正确
print_r($data->name); // Tom
print_r($data->age); // 23
print_r(gettype($data)); // object
print_r($data);

输出


stdClass Object
(
    [name] => Tom
    [age] => 23
)

反序列化方式二:

$data = json_decode($json, true);
// 取值方式
// 错误
// print_r($data->name);
// Trying to get property of non-object
// 正确
print_r($data['name']); // Tom
print_r($data['age']); // 23
print_r(gettype($data)); // array
print_r($data);

打印结果


Array
(
    [name] => Tom
    [age] => 23
)

参考

出现“Cannot use object of type stdClass as array”

相关文章
|
1月前
|
Python
通过 type 和 object 之间的关联,进一步分析类型对象
通过 type 和 object 之间的关联,进一步分析类型对象
56 3
|
2月前
|
存储 JavaScript 前端开发
JS篇(Array、Object)
JS篇(Array、Object)
19 1
|
3月前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
|
3月前
|
JavaScript 前端开发 PHP
|
3月前
|
Docker 容器
成功解决:Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but
这篇文章讨论了在使用Docker启动Elasticsearch容器时遇到的一个具体问题:由于配置文件`elasticsearch.yml`解析出错导致容器启动失败。文章提供了详细的排查过程,包括查看容器的日志信息、检查并修正配置文件中的错误(特别是空格问题),并最终成功重新启动了容器。
|
3月前
|
应用服务中间件 Shell 网络安全
nginx安装提示 libssl.so.3: cannot open shared object file: No
【8月更文挑战第1天】### 原因 未将安装的ssl中的`libssl.so.3`链接到`/usr/lib`导致缺失。 ### 解决方案 1. 检查openssl是否已安装,若为低版本则需重装。 ```sh whereis openssl
1727 6
|
3月前
|
存储 关系型数据库 MySQL
|
3月前
|
JSON 数据格式 Python
【python】解决json.dump(字典)时报错Object of type ‘float32‘ is not JSON serializable
在使用json.dump时遇到的“Object of type ‘float32’ is not JSON serializable”错误的方法,通过自定义一个JSON编码器类来处理NumPy类型的数据。
148 1
|
3月前
|
Ubuntu
Ubuntu22.04,AOSP编译报错: libncurses.so.5: cannot open shared object file: No such file
本文描述了在Ubuntu 22.04系统上编译AOSP时遇到的`libncurses.so.5`缺失错误,并提供了通过安装相应库解决该问题的步骤。
384 0
|
4月前
|
关系型数据库 MySQL
mysql: error while loading shared libraries: libncurses.so.5: cannot open shared object file
mysql: error while loading shared libraries: libncurses.so.5: cannot open shared object file
315 2

热门文章

最新文章

下一篇
无影云桌面