Write a PHP program to sort an associative array (alphanumeric with case-sensitive data) by values
- برمجة بي اتش بي
- 2021-09-09
- mhanasmh00489829403
الأجوبة
<?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);
?>
Sample Output:
Array
(
[0] => example1
[4] => example4
[3] => Example6
[2] => example10
[6] => example10
[1] => Example11
[5] => EXAMPLE40
)القوائم الدراسية التي ينتمي لها السؤال