Random\Randomizer::getBytes
(PHP 8 >= 8.2.0)
Random\Randomizer::getBytes — Get random bytes
Descrição
Generates a string containing uniformly selected random bytes with the requested length
.
As the returned bytes are selected completely randomly, the resulting string is likely to contain unprintable characters or invalid UTF-8 sequences. It may be necessary to encode it before transmission or display.
Parâmetros
length
-
The length of the random string that should be returned in bytes; must be
1
or greater.
Valor Retornado
A string containing the requested number of random bytes.
Erros/Exceções
-
If the value of
length
is less than1
, 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::getBytes() example
<?php
$r = new \Random\Randomizer();
echo bin2hex($r->getBytes(8)), "\n";
?>
O exemplo acima produzirá algo semelhante a:
ebdbe93cd56682c2
Veja Também
- random_bytes() - Obtém bytes aleatórios criptograficamente seguros
- bin2hex() - Converte um dado binário em representação hexadecimal
- base64_encode() - Codifica dados com MIME base64
- Random\Randomizer::getBytesFromString() - Get random bytes from a source string