programming-examples/php/Arrays/PHP program to sort an associative array (alphanumeric with case-sensitive data) by values.php
2019-11-15 12:59:38 +01:00

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);
?>