✔ CSPRNG


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

var_dump( $int );
var_dump( bin2hex($bytes) );
?>
Output
int(328) string(20) "e68e1e2d712f73bfc430"