How can I access an object property named as a variable in php?(如何访问在 php 中命名为变量的对象属性?)
问题描述
以 JSON 编码的 Google API 返回了这样的对象
A Google APIs encoded in JSON returned an object such as this
[updated] => stdClass Object
(
[$t] => 2010-08-18T19:17:42.026Z
)
谁知道我如何访问 $t 值?
Anyone knows how can I access the $t value?
$object->$t 明显返回
注意:未定义变量:t in/usr/local/...
Notice: Undefined variable:
tin /usr/local/...
致命错误:无法访问/.... 中的空属性
Fatal error: Cannot access empty property in /....
推荐答案
由于您的属性名称是字符串 '$t',您可以这样访问它:
Since the name of your property is the string '$t', you can access it like this:
echo $object->{'$t'};
或者,您可以将属性的名称放在一个变量中并像这样使用它:
Alternatively, you can put the name of the property in a variable and use it like this:
$property_name = '$t';
echo $object->$property_name;
您可以在 repl.it 上看到这两种操作:https://repl.it/@jrunning/SpirtedTroubledWorkspace
You can see both of these in action on repl.it: https://repl.it/@jrunning/SpiritedTroubledWorkspace
这篇关于如何访问在 php 中命名为变量的对象属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何访问在 php 中命名为变量的对象属性?
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何替换eregi() 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
