<<< Previous question <<< Question ID#0443.md >>> Next question >>>
What is the output of the following code?
$a = "a, b,c, d, e f, g";
$b = array_merge(explode(', ', $a), array("a", "b"));
echo count($b);
- A) 7
- B) 9
- C) 5
- D) 3
Answer
Answer: A
What is the output of the following code?
$a = "a, b,c, d, e f, g";
$b = array_merge(explode(', ', $a), array("a", "b"));
echo count($b);
Answer: A