rand() 函数生成一个随机整数。
提示示例:如果您想要 10 到 100(含)之间的随机整数,请使用 rand (10,100)。
提示:从 PHP 7.1 开始,rand() 函数已成为mt_rand()功能。
rand();
or
rand(
min,max);
Parameter | Description |
---|---|
min | Optional. Specifies the lowest number to return. Default is 0 |
max | Optional. Specifies the highest number to return. Default is getrandmax() |
返回值: | 之间的随机整数分钟(或 0)和最大限度(或包含 getrandmax()) |
---|---|
返回类型: | 整数 |
PHP 版本: | 4+ |
PHP 变更日志: | PHP 7.1:rand() 函数是以下函数的别名mt_rand()。 PHP 4.2.0:随机数生成器自动播种。 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!