<<< Previous question <<< Question ID#0398.md >>> Next question >>>
What is the output of the following PHP script?
$values = array(37, 5, "09");
sort($values, SORT_STRING);
foreach ($values as $v) {
echo $v;
}
- A) 09375
- B) 09537
- C) 53709
- D) 50937
Answer
Answer: A