当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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)






相关用法


注:本文由纯净天空筛选整理自 PHP mt_getrandmax() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。