當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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