Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 578 Bytes

0468.md

File metadata and controls

26 lines (22 loc) · 578 Bytes

What is the output of the following code?

function format(&$item) {
   $item = strtoupper($item) . '.';
   return $item;
}
$shopping = array("fish""bread""eggs""jelly""apples");
array_walk($shopping"format");
$shopping = sort($shopping);
echo $shopping[1];
  • A) nothing (no output)
  • B) "APPLES."
  • C) "apples"
  • D) "BREAD."
Answer

Answer: A