Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 591 Bytes

0394.md

File metadata and controls

29 lines (24 loc) · 591 Bytes

Remembering that keys are not reset when using natsort(), what is the output of the following PHP script?

$filenames = array(
    'img12.png',
    'img7.png',
    'img21.png',
    'img1.png'
);

natsort($filenames);
$values = array_values($filenames);
echo $values[1];

Enter the exact script output

  • A) img7.png
  • B) img12.png
  • C) img121.png
  • D) img1.png
Answer

Answer: A