PHP rand() 函数
PHP rand() 函数
定义和用法
rand() 函数生成随机整数。
提示:如果您想要一个介于 10 和 100 之间(包括 10 和 100)的随机整数,请使用 rand (10,100)。
提示:mt_rand() 函数是产生随机值的更好选择,返回结果的速度是 rand() 函数的 4 倍。
语法
rand();
or
rand(min,max);
or
rand(min,max);
参数 | 描述 |
---|---|
min | 可选。规定返回的最小数。默认是 0。 |
max | 可选。规定返回的最大数。默认是 getrandmax()。 |
技术细节
返回值: | 介于 min(或 0)与 max(或 mt_getrandmax())之间(包括边界值)的随机整数。 |
---|---|
返回类型: | Integer |
PHP 版本: | 4+ |
PHP 更新日志: | PHP 4.2.0:随机数生成器自动播种。 |
PHP Math 参考手册
相关文章
- PHP 语法
- PHP $_GET 变量
- PHP 错误处理
- PHP 过滤器
- PHP JSON
- PHP array_intersect_assoc() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_first() 函数
- PHP array_pad() 函数
- PHP array_replace() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP shuffle() 函数
- PHP uasort() 函数
- PHP 5 Calendar 函数
- PHP HTTP 函数
- PHP 5 MySQLi 函数