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.
http://www.bkjia.com/PHPjc/915429.htmlwww.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...