Home > Article > Backend Development > How to implement random sorting of php arrays, php array sorting_PHP tutorial
The example in this article describes how to implement random sorting of php arrays. Share it with everyone for your reference. The specific implementation method is as follows:
<?php $array = array('A','2','3','4','5','6','7','8','9','10','J','Q','K'); shuffle($array); //随机排序数组 print_r($array); //输出数组 ?>
The running results are as follows:
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 )
I hope this article will be helpful to everyone’s PHP programming design.