定义和用法
stats_rand_gen_int() 函数可以生成 1 到 2147483562 之间的随机整数。
用法
int stats_rand_gen_int( void )
There is name mismatch in the actual function name and PHP manual. The actual C statement declaring the function name (stats_rand_ignlgi) and binding to the randlib.c function uses a different name as the 'proto' comment tells
返回值
stats_rand_gen_int() 函数可以返回 1 到 2147483562 之间的随机整数。
依赖关系
这个函数最初是在统计扩展(PHP 4.0.0 和 PEAR 1.4.0)中引入的。我们在本教程中使用了最新版本的 stats-2.0.3(PHP 7.0.0 或更高版本和 PEAR 1.4.0 或更高版本)
示例
在以下示例中,该函数每次执行时都会生成一个 1 到 2147483562 之间的随机整数。
<?php
var_dump(stats_rand_ignlgi());
?>
相关用法
- PHP stats_rand_gen_iuniform()用法及代码示例
- PHP stats_rand_gen_ipoisson()用法及代码示例
- PHP stats_rand_gen_ibinomial()用法及代码示例
- PHP stats_rand_gen_beta()用法及代码示例
- PHP stats_rand_gen_chisquare()用法及代码示例
- PHP stats_rand_gen_f()用法及代码示例
- PHP stats_rand_gen_funiform()用法及代码示例
- PHP stats_rand_gen_normal()用法及代码示例
- PHP stats_rand_gen_t()用法及代码示例
- PHP stats_rand_gen_exponential()用法及代码示例
- PHP stats_rand_get_seeds()用法及代码示例
- PHP stats_rand_ranf()用法及代码示例
- PHP stats_rand_setall()用法及代码示例
- PHP stats_dens_pmf_binomial()用法及代码示例
- PHP stats_cdf_chisquare()用法及代码示例
- PHP stats_cdf_t()用法及代码示例
- PHP stats_cdf_exponential()用法及代码示例
- PHP stats_harmonic_mean()用法及代码示例
- PHP stats_cdf_normal()用法及代码示例
- PHP stats_dens_laplace()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Stats Rand Gen Int() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。