当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > getrandmax() 函数
The getrandmax() function returns the maximum random number that can be returned by a call to the rand() function.
getrandmax()函数的作用是:显示所有随机数中出现的最大可能值。
getrandmax() |
<?php echo(getrandmax()); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
32767 |