gpt4 book ai didi

php - PHP 中 0 到 1 之间的随机 float

转载 作者:IT王子 更新时间:2023-10-29 01:03:56 26 4
gpt4 key购买 nike

如何在 PHP 中生成 0 到 1 之间的随机 float ?

我正在寻找与 Java 的 Math.random() 等效的 PHP。

最佳答案

您可以使用标准函数:lcg_value() .

这是 rand() 上给出的另一个函数文档:

// auxiliary function
// returns random number with flat distribution from 0 to 1
function random_0_1()
{
return (float)rand() / (float)getrandmax();
}

关于php - PHP 中 0 到 1 之间的随机 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14141212/

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