Random\Randomizer::getInt
(PHP 8 >= 8.2.0)
Random\Randomizer::getInt — Get a uniformly selected integer
Descrição
Warning
Esta função não está documentada; apenas a lista de argumentos está disponível.
Parâmetros
min
-
The lowest value to be returned.
max
-
The highest value to be returned.
Valor Retornado
A uniformly selected integer from the closed interval
[min
, max
]. Both
min
and max
are
possible return values.
Erros/Exceções
-
If
max
is less thanmin
, a ValueError will be thrown. -
Qualquer erro ou exceção Throwable lançados pelo método Random\Engine::generate()
do mecanismo
Random\Randomizer::$engine
subjacente.
Exemplos
Example #1 Random\Randomizer::getInt() example
<?php
$r = new \Random\Randomizer();
// Random integer in range:
echo $r->getInt(1, 100), "\n";
?>
O exemplo acima produzirá algo semelhante a:
42
Veja Também
- random_int() - Obtém um número inteiro selecionado uniformemente e criptograficamente seguro
- Random\Randomizer::getFloat() - Get a uniformly selected float