I try to dynamically set name of an attribute in an object to be changed.
when working with simple variables this
$a='b';
$$a=2;
set $b value to 2
but when working with object
$a='object->variable';
$$a=2;
doesnt change value of $object->variable
Any clues what I am doing wrong?