如何以@开头访问对象属性?我有以下对象存储在 $ obj 变量中。
Object
(
[@example] => Array
(
[0] => 35815256
[1] => 38755256
[2] => 87678676
)
[example] => Array
(
[0] => abcdefg
[1] => abcdef
[2] => abcde
)
)
以下打印不起作用。错误:预期:字段名称。
print_r($obj -> @example);
这项工作。
print_r($obj -> example);