<<< Previous question <<< Question ID#0447.md >>> Next question >>>
What is the output of the following?
$a = 7;
$b = 4;
function b($a, $b) {
global $a, $b;
$a += 7;
$a++;
$b += $a;
return true;
}
echo $b, $a;
- A) 47
- B) 1419
- C) 74
- D) 1519
Answer
Answer: A