定義和用法
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。