PHP Math 函数
mt_getrandmax() 显示随机数的最大可能值。
mt_getrandmax()
返回调用 mt_rand() 所能返回的最大的随机数。
<?php echo mt_getrandmax(); ?>
输出类似:
3147483649
Search: