<<< Previous question <<< Question ID#0457.md >>> Next question >>>
What is the output of the following code:
function a($a) {
echo $a . "&";
}
function b($a) {
echo "-" . $a;
}
$a = "!";
$b = &$a;
echo a(b($b));
- A) -!&
- B) -!!&
- C) !&-&
- D) -&!
Answer
Answer: A