Home > Backend Development > PHP Tutorial > 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
Release: 2016-07-13 09:50:42
Original
927 people have browsed it

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

Copy after login

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
)
Copy after login

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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template