a = '1';$b = &$a;$b = "2$b";echo $a.", ".$b; what is output
Answers
Answered by
0
if you understand that any change to $a or $b changes the other as well. So you will see that the result must be
21,21
Similar questions