抽奖函数升级版
可自定义概率,按需求排除奖项 无 ?php/** * 抽奖函数升级版,可排除若干奖项 */class Lottery { static public $rate; static public $ignore; /** * * @param type $rate 概率设置 * @param type $ignore 忽略的奖项 * @return 调用实例化后的对象方法 * @e
可自定义概率,按需求排除奖项
<?php /** * 抽奖函数升级版,可排除若干奖项 */ class Lottery { static public $rate; static public $ignore; /** * * @param type $rate 概率设置 * @param type $ignore 忽略的奖项 * @return 调用实例化后的对象方法 * @example Lottery::runOnce(array(20, 10, 10, 10), array(0)); */ static public function runOnce($rate = array(10, 10, 10, 10), $ignore = array()) { self::$rate = $rate; self::$ignore = $ignore; $obj = new self; return $obj->lotteryProcess(); } /** * 处理抽奖 * @return type */ public function lotteryProcess() { $rateSum = array_sum(self::$rate); //概率之和 //考虑用户输入的概率之和不等于100 if ($rateSum < 100) { array_push(self::$rate, 100 - $rateSum); } elseif ($rateSum > 100) { die('The rate sum over 100%!'); } //处理忽略奖项 $rateCount = count(self::$rate); foreach (self::$rate as $key => $value) { if (in_array($key, self::$ignore)) { self::$rate[$rateCount - 1]+=self::$rate[$key]; self::$rate[$key] = 0; } $seedRaw[$key] = self::$rate[$key] * 100; //概率放大100被备用 } $seed = $this->arraySum($seedRaw); //处理数组 $randVal = mt_rand(0, 10000); return $this->judge($seed, $randVal); } /** * 从0-10000重新组织数组,每个值为之前各项的累加 * @param array $seedRaw * @return array */ private function arraySum(array$seedRaw) { foreach ($seedRaw as $key => $value) { $tmpSum = 0; for ($i = 0; $i < $key; $i++) { $tmpSum+=$seedRaw[$i]; } $seed[$key] = $tmpSum; } array_push($seed, 10000); return $seed; } /** * 根据随机值判断此次中了第几个奖项 * @param type $seed * @param type $rand * @return int */ private function judge($seed, $rand) { array_push($seed, NULL); //凑数 for ($i = 0; $i < count($seed) - 1; $i++) { if ($rand >= $seed[$i] && $rand < $seed[$i + 1]) { return $i; } } } } ini_set('display_errors', 'on'); $l0 = 0; $l1 = 0; $l2 = 0; $l3 = 0; $l4 = 0; $l5 = 0; for ($i = 0; $i <= 10000; $i++) { $result = Lottery::runOnce(array(20, 10, 10, 10), array(0, 1)); if ($result === 0) $l0++; if ($result == 1) $l1++; if ($result == 2) $l2++; if ($result == 3) $l3++; if ($result == 4) $l4++; } echo '0:' . $l0 . '<br/>1:' . $l1 . '<br/>2:' . $l2 . '<br/>3:' . $l3 . '<br/>4:' . $l4;

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
