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.
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 = ['60寸大彩电', 'iphone13', '戴森吸尘器', '索尼微单', 'VR眼镜', '谢谢参与']; // 当有用户进来抽奖,进行随机抽奖 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 = [ ['name' => '60寸大彩电', 'chance' => 100], ['name' => 'iphone13', 'chance' => 900], ['name' => '戴森吸尘器', 'chance' => 1000], ['name' => '索尼微单', 'chance' => 2000], ['name' => 'VR眼镜', 'chance' => 3000], ['name' => '谢谢参与', 'chance' => 3000] ]; // 概率重组 $chance = 0; foreach ($prize as &$item) { $chance += $item['chance']; $item['chance'] = $chance; } // 随机抽奖 $rand = mt_rand(1, 10000); $result = []; foreach ($prize as $_k => $_v) { if ($_k == 0) { if ($rand > 0 && $rand <= $_v['chance']) { $result = $_v; break; } } else { if ($rand > $prize[$_k - 1]['chance'] && $rand <= $_v['chance']) { $result = $_v; break; } } } // 抽奖结果 echo json_encode(compact('rand', 'result'));
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 = [ ['name' => '60寸大彩电', 'winners' => ['张三']], ['name' => 'iphone13', 'winners' => ['李四', '王五']], ['name' => '戴森吸尘器', 'winners' => ['亮仔']], ['name' => '索尼微单', 'winners' => ['李六']], ['name' => 'VR眼镜', 'winners' => ['小明']] ]; // 开始抽奖,这里假如亮仔过来抽 // 这里的用户也可以是用户唯一标识 $user = '亮仔'; $result = '谢谢参与'; foreach ($prize as $item) { if (in_array($user, $item['winners'])) { $result = $item['name']; break; } } print_r('获得的奖品:' . $result);
Recommended learning:《
PHP video tutorialThe 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!

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

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
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.
