Home  >  Article  >  Backend Development  >  Usage of shuffle array value sorting function in PHP, shuffle array_PHP tutorial

Usage of shuffle array value sorting function in PHP, shuffle array_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:13:33854browse

Usage of shuffle array value sorting function in PHP, shuffle array

The example in this article describes the usage of the shuffle array value random sorting function, and is shared with everyone for your reference.

The specific example code is as follows:

Copy code The code is as follows:
$typename=20;
$rtitle='tt';
for( $i=0;$i<=20;$i++)
{
$rtitle_rand = array($typename,$rtitle,$typename);
shuffle($rtitle_rand);//Randomly sort the array
echo $rtitle_rand['0'].'
';
}

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/915429.htmlTechArticleHow to use the shuffle array value random sorting function in PHP, shuffle array This article describes the use of the shuffle array value random sorting function , shared with everyone for your reference. Specific example codes are as follows...
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