Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 421 Bytes

0398.md

File metadata and controls

23 lines (19 loc) · 421 Bytes

What is the output of the following PHP script?

$values = array(375"09");
sort($valuesSORT_STRING);
foreach ($values as $v) {
    echo $v;
}
  • A) 09375
  • B) 09537
  • C) 53709
  • D) 50937
Answer

Answer: A