Menghasilkan string acak dalam php menggunakan fungsi acak_bytes (). (Aman secara kriptografis)

<?php 
$n = 20;
$result = bin2hex(random_bytes($n));
echo "Hello from Softhunt.net";

echo $result;
?>
Outrageous Ostrich