(PHP 7)
gmp_random_seed — Sets the RNG seed
seed
The seed to be set for the gmp_random(), gmp_random_bits(), and gmp_random_range() functions.
Dies kann entweder eine resource für einen GMP-Wert in PHP 5.5 oder voher sein, ein GMP-Objekt in PHP 5.6 und später oder ein numerischer String, wenn es möglich ist, diesen in einen GMP-Wert umzuwandeln.
Returns NULL
on success.
Issues an E_WARNING
and returns FALSE
if
seed
is not valid.
Beispiel #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'));
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
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)