Home > Article > Backend Development > Method of two-color ball algorithm implemented in PHP
This article mainly introduces the two-color ball algorithm implemented in PHP, involving PHP array traversal, random numbers and other related operation skills. Friends in need can refer to it
The details are as follows:
<?php function DoubleBall(){ $sysBlueball = mt_rand(1,16); $sysRedball = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33); $result = array(); for($i=0; $i<6; $i++) { while(true) { $index = mt_rand(0,32); if($sysRedball[$index] != 0){ $result[$i] = $sysRedball[$index]; $sysRedball[$index] = 0; break; } } } $result = implode(',',$result); echo '你选择的篮球为:'.$sysBlueball.''; echo '你选择的红球为:'.$result.''; } DoubleBall(); ?>
Running results:
你选择的篮球为:3你选择的红球为:29,11,26,14,9,24##Related recommendations:
PHP implements calculation of lottery drawProbability algorithm
php implements lottery program to win prizesExample of probability algorithm
php implements lotteryProbability algorithmCode
##
The above is the detailed content of Method of two-color ball algorithm implemented in PHP. For more information, please follow other related articles on the PHP Chinese website!