我有一个这样的stdClass对象:
print_r($myobj); stdClass Object( [0] => testData );
因此很明显,我无法通过来获取值$myobj->0。
$myobj->0
为了获得此值,我将对象转换为数组,但是有没有不转换的方法?
尝试这个:
$obj = new stdClass(); $obj->{0} = 1; echo $obj->{0};
来源:http : //php.net/manual/en/language.types.object.php