Skip to content

Latest commit

History

History
23 lines (19 loc) 路 459 Bytes

File metadata and controls

23 lines (19 loc) 路 459 Bytes

What is the output of the following PHP script?

$values = array(37, 5, "09");
$sorted = sort($values, SORT_STRING);
foreach ($sorted as $v) {
    echo $v;
}
  • A) PHP warning: sort() doesn't return an array
  • B) 09537
  • C) 37509
  • D) 50937
Answer

Answer: A