Q. What will be the output of the following PHP code ?
Code:
<?php $s = 4; $t = 8; $s *= $t /= $s; echo $s, $t; ?>
β
Correct Answer: (A)
82
Explanation: Expression is evaluated from right to left.