$y=$x $y, the final output is still the originally set $y, not the calculated $y
$x = 1;
$y = 2;
$y=$x+$y;
echo $y;
Result :
//3
No problem?
$x = 1;
$y = 2;
$y=$x+$y;
echo $y;
Result :
//3
No problem?