Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以@符号开头的 PHP stdClass 属性(根据我的调试器)。我如何访问它的值?
@
@averageBaseRate = "22.49"
使用花括号:
$obj->{'@averageBaseRate'}
这是应用于对象的复杂(卷曲)语法。
使用该语法,您可以为成员变量使用任何您想要的名称。 甚至可以在名称中加入非常奇怪的 Unicode 字符。