多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# PHP mt_getrandmax() 函数 ## 定义和用法 mt_getrandmax() 显示随机数的最大可能值。 ### 语法 ``` mt_getrandmax() ``` ### 说明 返回调用 [mt_rand()](/php/func_math_mt_rand.asp "PHP mt_rand() 函数") 所能返回的最大的随机数。 ## 例子 ``` <?php echo mt_getrandmax(); ?> ``` 输出类似: ``` 3147483649 ```