<?php
GMP gmp_random ( int $limiter = 20 )
where,
$limiter = The limiter to consider
?>
<?php
if(PHP_VERSION < 8)
{
$gmprnd01d = gmp_random(2);
$gmprnd01dd = gmp_strval($gmprnd01d);
echo $gmprnd01dd;
}
else
{
echo 'This function is not available!';
}
?>