Home  >  Article  >  Backend Development  >  How to implement random sorting of php arrays, php array sorting_PHP tutorial

How to implement random sorting of php arrays, php array sorting_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:50:42901browse

How to implement random sorting of php arrays, php array sorting

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:

<&#63;php 
$array = array('A','2','3','4','5','6','7','8','9','10','J','Q','K'); 
shuffle($array); //随机排序数组 
print_r($array); //输出数组 
&#63;>

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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1016330.htmlTechArticleHow to implement random sorting of php arrays, php array sorting 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: php $array...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn