PHP 8.3.4 Released!

gmp_random_seed

(PHP 7, PHP 8)

gmp_random_seedSets the RNG seed

Descrição

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

Parâmetros

seed

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

Um objeto GMP, um int ou uma string numérica.

Valor Retornado

Nenhum valor é retornado.

Erros/Exceções

Throws a ValueError if seed is invalid.

Registro de Alterações

Versão Descrição
8.0.0 If seed is invalid, gmp_random_seed() now throws a ValueError. Previously it emitted an E_WARNING and returned false.

Exemplos

Exemplo #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'));

O exemplo acima produzirá:

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)

Veja Também

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top