- 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 srand() 函数
实例
播种随机数生成器:
<?php
srand(mktime());
echo(rand());
?>
srand(mktime());
echo(rand());
?>
定义和用法
srand() 函数播种随机数生成器(rand())。
提示:从 PHP 4.2.0 开始,随机数生成器自动播种,因此没有必要使用该函数。
语法
srand(seed);
参数 | 描述 |
---|---|
seed | 可选。规定播种值。 |
技术细节
返回值: | 无。 |
---|---|
返回类型: | - |
PHP 版本: | 4+ |
PHP 更新日志: | PHP 4.2.0:随机数生成器自动播种。 |
PHP Math 参考手册
上一篇:PHP sqrt() 函数
下一篇:PHP tan() 函数
关注微信小程序
扫描二维码
程序员编程王