Sets the RNG seed

gmp_random_seed

(PHP 7, PHP 8)

gmp_random_seedSets the RNG seed

說明

gmp_random_seed(GMP|int|string $seed): void

參數

seed

The seed to be set for the gmp_random(), gmp_random_bits(), and gmp_random_range() functions.

GMP 對像或 int ,或數字string

返回值

成功時返回 null, 或者在失敗時返回 false

錯誤/異常

Issues an E_WARNING and returns false if seed is not valid.

範例

示例 #1 gmp_random_seed() example

<?php
// set the seed
gmp_random_seed(100);

var_dump(gmp_strval(gmp_random(1)));

// set the seed to something else
gmp_random_seed(gmp_init(-100));

var_dump(gmp_strval(gmp_random_bits(10)));

// set the seed to something invalid
var_dump(gmp_random_seed('not a number'));

以上例程會輸出:

string(20) "15370156633245019617"
string(3) "683"

Warning: gmp_random_seed(): Unable to convert variable to GMP - string is not an integer in %s on line %d
bool(false)

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *