PHP - 如何访问对象的属性

时间:2017-10-17 18:01:00

标签: php object

如何以@开头访问对象属性?我有以下对象存储在 $ 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);

0 个答案:

没有答案