Question:What is the output of the following code block?
<?php
$a = "The quick brown fox jumped over the lazy dog.";
$b = array_map("strtoupper", explode(" ", $a));
foreach($b as $value) {
print "$value ";
}
?>
A
B A PHP Error
C Array Array Array Array Array Array Array Array Array>
D None
E Array
+ AnswerA
+ Report