定义和用法
这个srand()函数用于播种随机数生成器。播种初始化随机数生成器。大多数随机数生成器需要初始种子。在 PHP 中,srand() 函数的使用是可选的,因为它是自动完成的。
这个函数没有任何返回值。
用法
srand ([ int $seed ] ):void
参数
Sr.No | 参数及说明 |
---|---|
1 | seed 要用作种子的整数。如果没有给出,则给出一个随机数 |
返回值
此函数不返回任何值。
PHP版本
该函数在 PHP 4.x、PHP 5.x 和 PHP 7.x 版本中可用。
示例
这个例子随机数生成器在使用 rand() 函数之前首先被初始化 -
<?php
srand(5);
echo "rand(1,100)=", rand(1,100);
?>
输出
这可能会产生以下结果 -
rand(1,100)=12
示例
以下示例使用当前时间戳来初始化随机数生成器 -
<?php
srand(time());
echo "rand()=", rand();
?>
输出
这可能会产生以下结果 -
rand()=548287992
相关用法
- PHP srand( )用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP strsrt()用法及代码示例
- PHP sqrt()用法及代码示例
- PHP stats_dens_pmf_binomial()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP Spreadsheet_Excel_Writer setAlign()用法及代码示例
- PHP strtolower()用法及代码示例
- PHP Spreadsheet_Excel_Writer setScript()用法及代码示例
- PHP str_split()用法及代码示例
- PHP stream_get_filters()用法及代码示例
- PHP Spreadsheet_Excel_Writer setOutLine()用法及代码示例
- PHP strchr()用法及代码示例
- PHP substr_compare()用法及代码示例
- PHP session_gc()用法及代码示例
- PHP stats_cdf_chisquare()用法及代码示例
- PHP string sha1()用法及代码示例
注:本文由纯净天空筛选整理自Malhar Lathkar大神的英文原创作品 PHP srand() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。