PHP mt_getrandmax()函数
PHP mt_getrandmax()函数是一种数学函数,用于找到最大可能的随机值。
语法
int mt_getrandmax ( void )
示例1
<?php
echo "By using 'mt_getrandmax()' function your value is:".(mt_getrandmax());
?>
输出:
By using 'mt_getrandmax()' function your value is:2147483647
示例2
<?php
function randomFloat(min = 0,max = 1) {
return min + mt_rand() / mt_getrandmax() * (max - $min);
}
var_dump(randomFloat());
var_dump(randomFloat(2, 20));
?>
输出:
float(0.34399861858413) float(13.130184705895)