Q. What will be the output?
Code:
$a = 'Hello'; $b = &$a; unset($b); echo $a;
β
Correct Answer: (A)
Hello
Explanation: Unset removes reference, not original variable.