php计算大乐透与双色球彩票算法

//调用
 public function index(){            
    
     $this->dlt(); //大乐透
      echo '














'; $this->ssq(); //双色球 } /* 大乐透 */ public function dlt() {    //随机5注 for($j=1;$j<=5;$j++) { //取前区号码 1-35随机5个数字 for($i=1;$i<=35;$i++) { $num=$i; if($i<=9) { $num='0'.$i; } $arr[$i]=$num; shuffle($arr); $arr=array_unique($arr); $return_before=array_slice($arr,0,5); } //取后区号码 1-12随机2个数字 $return_before=implode(',',$return_before); $chars = ['01','02','03','04','05','06','07','08','09','10','11','12'];//后区 shuffle($chars); $return_after=array_slice($chars,0,2); $str=''; sort($return_after); $str.=$return_before.' '.implode(',',$return_after).'
';//组合数据 print_r($str); } } //双色球 public function ssq() { //随机5注 for($j=1;$j<=5;$j++) { //取前区号码 1-33随机6个数字 for($i=1;$i<=33;$i++){ $num=$i; if($i<=9) { $num='0'.$i; } $arr[$i]=$num; shuffle($arr); $arr=array_unique($arr); $return_before=array_slice($arr,0,6); } //取后区号码 1-12随机2个数字 $return_before=implode(',',$return_before); $chars = ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16'];//后区 shuffle($chars); $return_after=array_slice($chars,0,1); $str=''; $str.=$return_before.' '.implode(',',$return_after).'
';//组合数据 print_r($str); } }

//效果图

php计算大乐透与双色球彩票算法_第1张图片

转载于:https://www.cnblogs.com/langzibht/p/10058933.html

你可能感兴趣的:(php计算大乐透与双色球彩票算法)