PHP | random_bytes () Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The random_bytes()is an inbuilt function in PHP. The main function is to generate cryptographically secure pseudo-random bytes. It generates cryptographic random bytes of arbitrary string length. The different sources of randomness used in this function, they are as follows:- Window : CryptGenRandom() function.Linux : getrandom(2) system call function. Syntax : String random_bytes ( int $length ) Parameter : It is the length of random string, returned in bytes. Return Value: The function returns the cryptographically secure random bytes in string. Examples: Input : length = 7 Output :string(14) "cbd392c01352b0" Below programs illustrate the random_bytes () function in PHP. Program 1: php <?php //random_bytes () function in PHP $length = random_bytes('4'); //Print the result and convert by binaryhexa var_dump(bin2hex($length)); ?> Output:string(8) "e62a94a2" php <?php //random_bytes () function in PHP $length = random_bytes('6'); //Print the result and convert by binaryhexa var_dump(bin2hex($length)); ?> Output:string(12) "808fc44d325b" Exception Error : Invalid parameter will give TypeError .Invalid length of bytes gives Error.If source of randomness is not found then Exception will be thrown. References: https://www.php.net/manual/en/function.random-bytes.php Create Quiz Comment J jit_t Follow 1 Improve J jit_t Follow 1 Improve Article Tags : Web Technologies PHP Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like