gpt4 book ai didi

php - 我如何根据事件发生的概率在 php 中执行一个事件

转载 作者:可可西里 更新时间:2023-11-01 13:05:23 32 4
gpt4 key购买 nike

我想要这样的东西:

$chance = 40; //40%
if ( run the probability check script ) {
echo "event happened"; //do the event
}
else {
echo "event didn't happened";
}

实现类似目标的最佳解决方案是什么?

非常感谢!

最佳答案

使用rand() :

if (rand(1,100)<=$chance)

这将返回一个介于 1 和 100 之间的数字,因此它小于或等于 40 的概率为 40%。

关于php - 我如何根据事件发生的概率在 php 中执行一个事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9252671/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com