f0964ea
1
2
3
4
5
6
7
<?php $n = 10; function getRandomString($n) { return bin2hex(random_bytes($n / 2)); } echo getRandomString($n); ?>