PHP mt_getrandmax()函数

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)

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程