Generate Given Number of Random Bytes using PHP June 14, 2021 PHP 0 Comments 406 Views random_bytes function <?php $n = 8; $randomBytes = random_bytes($n); print_r(unpack('C*', $randomBytes));
Leave a Comment
Cancel reply