Q. What will be the output?
Code:
$a = '10'; $b = &$a; $b = 20; echo gettype($a);
β
Correct Answer: (B)
integer
Explanation: Reference changes type of original variable.