search
HomeBackend DevelopmentPHP ProblemHow to implement lottery in php
How to implement lottery in phpDec 19, 2022 am 10:10 AM
phplottery

php method to implement lottery: 1. Create a php sample file; 2. Define the prizes owned by the prize pool; 3. Conduct random lottery through the "shuffle($prize);" method; 4. Use "print_r( $prize[0]);" Just print the lottery results.

How to implement lottery in php

The operating environment of this tutorial: windows10 system, PHP version 8.1, DELL G3 computer

How to implement lottery with php?

Sample code for PHP to implement lottery system

1. Random lottery

Random lottery is of course the fairest lottery, that is, when the user The lottery results are randomly returned during the lottery.

This result is completely random and is not under human control. Winning depends entirely on luck.

Define the prizes in the prize pool first. After the user enters the lottery, the prizes in the prize pool will be returned randomly. Prizes

<?php
$prize = [&#39;60寸大彩电&#39;, &#39;iphone13&#39;, &#39;戴森吸尘器&#39;, &#39;索尼微单&#39;, &#39;VR眼镜&#39;, &#39;谢谢参与&#39;];
 
// 当有用户进来抽奖,进行随机抽奖
shuffle($prize);
 
// 抽奖结果
print_r($prize[0]);

2. Probability lottery

Probability lottery is actually to set the probability for the prize. Generally, high-value prizes will have a very low probability of winning

This kind of lottery is also A type of random lottery, but there is no random lottery without probability control like above

Winning the grand prize requires a lot of luck, and most people will draw prizes with low value

<?php
$prize = [
    [&#39;name&#39; => &#39;60寸大彩电&#39;, &#39;chance&#39; => 100],
    [&#39;name&#39; => &#39;iphone13&#39;, &#39;chance&#39; => 900],
    [&#39;name&#39; => &#39;戴森吸尘器&#39;, &#39;chance&#39; => 1000],
    [&#39;name&#39; => &#39;索尼微单&#39;, &#39;chance&#39; => 2000],
    [&#39;name&#39; => &#39;VR眼镜&#39;, &#39;chance&#39; => 3000],
    [&#39;name&#39; => &#39;谢谢参与&#39;, &#39;chance&#39; => 3000]
];
 
// 概率重组
$chance = 0;
foreach ($prize as &$item) {
    $chance += $item[&#39;chance&#39;];
    $item[&#39;chance&#39;] = $chance;
}
 
// 随机抽奖
$rand = mt_rand(1, 10000);
 
$result = [];
foreach ($prize as $_k => $_v) {
    if ($_k == 0) {
        if ($rand > 0 && $rand <= $_v[&#39;chance&#39;]) {
            $result = $_v;
            break;
        }
    } else {
        if ($rand > $prize[$_k - 1][&#39;chance&#39;] && $rand <= $_v[&#39;chance&#39;]) {
            $result = $_v;
            break;
        }
    }
}
 
// 抽奖结果
echo json_encode(compact(&#39;rand&#39;, &#39;result&#39;));

3. Definite lottery draw

The default lottery draw is a commonly used lottery method at annual meetings. In order to reward those who have made significant contributions to the company this year, the company chooses to give designated prizes at the annual meeting. Giving them to those people through lottery

can not only bring encouragement to those people, but also to strengthen the company's cohesion

In this lottery model, the prizes have been previously assigned to the designated persons Binding

Only when the designated person comes in can the prize be drawn. Others thank you for participating, but the user does not know that this is the default choice

<?php
$prize = [
    [&#39;name&#39; => &#39;60寸大彩电&#39;, &#39;winners&#39; => [&#39;张三&#39;]],
    [&#39;name&#39; => &#39;iphone13&#39;, &#39;winners&#39; => [&#39;李四&#39;, &#39;王五&#39;]],
    [&#39;name&#39; => &#39;戴森吸尘器&#39;, &#39;winners&#39; => [&#39;亮仔&#39;]],
    [&#39;name&#39; => &#39;索尼微单&#39;, &#39;winners&#39; => [&#39;李六&#39;]],
    [&#39;name&#39; => &#39;VR眼镜&#39;, &#39;winners&#39; => [&#39;小明&#39;]]
];
 
// 开始抽奖,这里假如亮仔过来抽
// 这里的用户也可以是用户唯一标识
$user = &#39;亮仔&#39;;
 
$result = &#39;谢谢参与&#39;;
foreach ($prize as $item) {
    if (in_array($user, $item[&#39;winners&#39;])) {
        $result = $item[&#39;name&#39;];
        break;
    }
}
 
print_r(&#39;获得的奖品:&#39; . $result);

Recommended learning:《

PHP video tutorial

The above is the detailed content of How to implement lottery in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

excel抽奖小程序如何制作excel抽奖小程序如何制作Mar 20, 2024 am 11:40 AM

平时的工作中会遇到很多需要抽签进行的内容,传统的方法还是用纸质的号码随机抽号,随着电子软件的发展,我们可以用电脑制作抽签,今天欠们给大家分享的课程是excel抽奖小程序如何制作。1、首先我们打开Excel软件,打开我们准备好的表格,表格中要包含我们人的名字。  2、接着我们对右边的单元格进行合并,将今晚谁幸运填充为黑色,并将下方的单元格合并填充为红色,如下图所示。  3、接着我们在红色区域中输入randbetween函数,设置第一行为2,最后一行为7,如下图所示。  4、接着我们在前面输入ind

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.