当前位置:首页 > PHP教程 > php应用 > 列表

php实现可以设置中奖概率的抽奖程序代码分享

发布:smiling 来源: PHP粉丝网  添加日期:2020-08-28 20:25:07 浏览: 评论:0 

这篇文章主要介绍了一个抽奖程序,要求一等奖的中奖概率是0.12%,二等奖中奖概率是3%,三等奖中奖概率是12%,其他中奖概率是都是谢谢惠顾。

  1. <?php 
  2. /** 
  3.  * 抽奖 
  4.  * @param int $total 
  5.  */ 
  6. function getReward($total=1000) 
  7.  $win1 = floor((0.12*$total)/100); 
  8.  $win2 = floor((3*$total)/100); 
  9.  $win3 = floor((12*$total)/100); 
  10.  $other = $total-$win1-$win2-$win3
  11.  $return = array(); 
  12.  for ($i=0;$i<$win1;$i++) 
  13.  { 
  14.  $return[] = 1; 
  15.  } 
  16.  for ($j=0;$j<$win2;$j++) 
  17.  { 
  18.  $return[] = 2; 
  19.  } 
  20.  for ($m=0;$m<$win3;$m++) 
  21.  { 
  22.  $return[] = 3; 
  23.  } 
  24.  for ($n=0;$n<$other;$n++) 
  25.  { 
  26.  $return[] = '谢谢惠顾'
  27.  }//phpfensi.com 
  28.  shuffle($return); 
  29.  return $return[array_rand($return)]; 
  30.   
  31. $data = getReward(); 
  32. echo $data
  33. ?>  

这篇文章主要介绍了一个抽奖程序,要求一等奖的中奖概率是0.12%,二等奖中奖概率是3%,三等奖中奖概率是12%,其他中奖概率是都是谢谢惠顾。

Tags: php中奖概率 php抽奖程序

分享到: