--TEST-- Accessing members of standard object through of variable variable --FILE-- a =& $$test; $$test->a->b[] = 2; var_dump($$test); ?> --EXPECTF-- object(stdClass)#%d (2) { ["a"]=> *RECURSION* ["b"]=> array(1) { [0]=> int(2) } }