Home > Article > Backend Development > Implementation method of random sorting of php array_PHP tutorial
This article describes the implementation method of random sorting of php arrays. Share it with everyone for your reference. The specific implementation method is as follows:
3 4
5
|
$array = array('A','2','3','4','5','6','7','8','9','10','J ','Q','K'); shuffle($array); //Randomly sort arrayprint_r($array); //Output array |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Array ( [0] => Q [1] => 3 [2] => 5 [3] => 2 [4] => 10 [5] => 9 [6] => K [7] => 4 [8] => J [9] => 6 [10] => 7 [11] => 8 [12] => A ) |