You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
281 B
PHP

<?php
$test_array = array(
0 => 'example1',
1 => 'Example11',
2 => 'example10',
3 => 'Example6',
4 => 'example4',
5 => 'EXAMPLE40',
6 => 'example10'
);
asort($test_array, SORT_STRING | SORT_FLAG_CASE | SORT_NATURAL);
print_r($test_array);
?>