从对象获取值php

时间:2010-09-19 21:43:49

标签: php variables object stdclass var-dump

我在代码中的对象上使用了var_dump。 print var_dump( $$user);

结果:object(stdClass)#35 (1) { ["user1_ready"]=> string(1) "0" }如何获得此值(在本例中为0)。

我尝试了print $$用户,结果是Catchable fatal error: Object of class stdClass could not be converted to string in

我需要像if($$user == 0){echo "error message") else {

这样的东西

1 个答案:

答案 0 :(得分:1)

您需要使用属性/方法访问器“ - >”。通常如下:

$object->method()$object->property

所以你的

$$user->user1_ready