- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP rand() 函数
实例
生成随机数:
<?php
echo(rand() . "<br>");
echo(rand() . "<br>");
echo(rand(10,100));
?>
echo(rand() . "<br>");
echo(rand() . "<br>");
echo(rand(10,100));
?>
定义和用法
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 rad2deg() 函数
下一篇:PHP round() 函数
关注微信小程序
扫描二维码
程序员编程王