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:
t
in /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 中命名为变量的对象属性?


基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01