random_bytes
(PHP 7, PHP 8)
Get cryptographically secure random bytes
Description
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.
The randomness generated by this function is suitable for all applications, including the generation of long-term secrets, such as encryption keys.
Sources Backport
Parameters
lengthThe length of the random string that should be returned in bytes; must be
1or greater.
Return Values
A string containing the requested number of cryptographically secure random bytes.
Errors/Exceptions
- If the value of
lengthis less than1, aValueErrorwill be thrown.
Changelog
| Version | Description |
|---|---|
| 8.2.0 | In case of a CSPRNG failure, this function will now throw a Random\RandomException. Previously a plain Exception was thrown. |
Examples
random_bytes() example
<?php
$bytes = random_bytes(5);
var_dump(bin2hex($bytes));
?>The above example will output something similar to:
string(10) "385e33f741"