Php implementation: code sharing of the lottery program that can set the winning probability

Source: Internet
Author: User
This article mainly introduces a lottery program. The probability of winning the first prize is 0.12%, the probability of winning the second prize is 3%, the probability of winning the third prize is 12%, and the probability of winning other prizes is thank you for your patronage.

This article mainly introduces a lottery program. The probability of winning the first prize is 0.12%, the probability of winning the second prize is 3%, the probability of winning the third prize is 12%, and the probability of winning other prizes is thank you for your patronage.

The Code is as follows:


/**
* Lucky Draw
* @ Param int $ total
*/
Function getReward ($ total = 1000)
{
$ Win1 = floor (0.12 * $ total)/100 );
$ Win2 = floor (3 * $ total)/100 );
$ Win3 = floor (12 * $ total)/100 );
$ 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 [] = 'Thank you for your patronage ';
}
Shuffle ($ return );
Return $ return [array_rand ($ return)];
}

$ Data = getReward ();
Echo $ data;
?>

,

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.