1.php实现可以设置中奖概率的抽奖p抽抽奖程序代码分享
php实现可以设置中奖概率的抽奖程序代码分享
这篇文章主要介绍了一个抽奖程序,要求一等奖的源码永劫辅助源码中奖概率是0.%,二等奖中奖概率是奖源网狐荣耀版源码教程3%,三等奖中奖概率是抽奖p抽小微机器人 源码%,其他中奖概率是源码qq百号秒源码都是谢谢惠顾
代码如下:
<?php
/
***
抽奖
*
@param
int
$total
*/
function
getReward($total=)
{
$win1
=
floor((0.*$total)/);
$win2
=
floor((3*$total)/);
$win3
=
floor((*$total)/);
$other
=
$total-$win1-$win2-$win3;
$return
=
array();
for
($i=0;$i<$win1;$i++)
{
$return[]
=
1;
}
for
($j=0;$j<$win2;$j++)
{
$return[]
=
2;
}
for
($m=0;$m<$win3;$m++)
{
$return[]
=
3;
}
for
($n=0;$n<$other;$n++)
{
$return[]
=
'谢谢惠顾';
}
shuffle($return);
return
$return[array_rand($return)];
}
$data
=
getReward();
echo
$data;
>2024-11-13 14:33
2024-11-13 14:23
2024-11-13 13:13
2024-11-13 12:57
2024-11-13 12:47
2024-11-13 12:30