Random\Randomizer::nextInt
(PHP 8 >= 8.2.0)
Random\Randomizer::nextInt — Get a positive integer
Descrição
Warning
Esta função não está documentada; apenas a lista de argumentos está disponível.
Parâmetros
Esta função não possui parâmetros.
Valor Retornado
A positive integer between 0 and a maximum value depending on the number of bytes returned from Random\Engine::generate(). The exact maximum can be calculated as 2$engine_bytes * 8 - 1 - 1.
Erros/Exceções
- To avoid inconsistencies, 32 bit PHP will throw Random\RandomException if the output size of Random\Engine::generate() exceeds 32 bits, as the selected integer cannot be returned losslessly. This affects the native 64 bit engines Random\Engine\PcgOneseq128XslRr64 and Random\Engine\Xoshiro256StarStar. Any userland engine returning more than 4 bytes of randomness is also affected.
-
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::nextInt() example
<?php
$r = new \Random\Randomizer();
// Random "next" integer:
echo $r->nextInt(), "\n";
?>
O exemplo acima produzirá algo semelhante a:
8041689838856078718