当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP stats_rand_gen_int()用法及代码示例



定义和用法

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 Int() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。