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


PHP gmp_random_seed()用法及代碼示例


gmp_random_seed()是PHP中的內置函數,用於設置RNG種子(隨機數生成)。

用法:

void gmp_random_seed ( mixed $seed )

參數:gmp_random_seed()函數接受如上所述的單個參數,並在下麵進行說明:


  • $seed:這是gmp_random_seed()函數所需的唯一參數,該參數將為gmp_random(),gmp_random_range()和gmp_random_bits()函數設置。此參數可以是PHP 5.5或更早版本中的GMP資源,PHP 5.6或更高版本中的GMP對象,或者還可以傳遞數字字符串,前提是可以將該字符串轉換為數字。

返回值:gmp_random_seed()函數在成功時返回NULL,在失敗時返回FALSE。

注意:

Warning: The function generates an E-Warning and returns False if the seed is not valid.

例子:以下示例程序旨在說明PHP中的gmp_random_seed()函數:

程序1:

<?php 
  
// PHP code implementing the gmp_random_seed function 
  
// setting the seed 
gmp_random_seed(100); 
  
var_dump(gmp_strval(gmp_random(1))); 
  
?>

輸出:

string(19) "7842303329126688544"

程序2:

<?php 
//php code implementing the gmp_random_seed() function 
  
// set the seed to something else 
gmp_random_seed(gmp_init(-100)); 
  
var_dump(gmp_strval(gmp_random_bits(10))); 
  
?>

輸出:

string(3) "800"

程序3:

<?php 
//PHP code implementing gmp_random_seed() function  
   
// set the seed to something invalid 
var_dump(gmp_random_seed('not a number')); 
  
?>

輸出:

gmp_random_seed(): Unable to convert variable to GMP - string is not an integer -- at line 5
bool(false)

相關文章:

參考:http://php.net/manual/en/function.gmp-random-seed.php



相關用法


注:本文由純淨天空篩選整理自priya_1998大神的英文原創作品 PHP | gmp_random_seed() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。