How can I collapse these two statements into a single statement?
$in=array(1=>'a', 2=>'b', 3=>array('aa', 'bb')); $in[3]['cc']=&$in[3];
Is it even possible?