(PHP 7, PHP 8)
gmp_random_seed — Sets the RNG seed
seedThe seed to be set for the gmp_random(), gmp_random_bits(), and gmp_random_range() functions.
Può essere o una resource numero GMP, oppure una stringa numerica dal momento che è possibile convertire quest'ultimo in un numero.
Nessun valore viene restituito.
   Throws a ValueError if seed
   is invalid.
  
| Versione | Descrizione | 
|---|---|
| 8.0.0 | If seedis invalid, gmp_random_seed()
       now throws a ValueError.
       Previously it emitted anE_WARNINGand returnedfalse. | 
Example #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'));Il precedente esempio visualizzerà:
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)
