✔ CSPRNG


<?php
$int   = random_int(-500, 500);
$bytes = random_bytes(10);

var_dump( $int );
var_dump( bin2hex($bytes) );
?>
Output
int(326) string(20) "0817f82ee9d9d89511e1"