Random generators provide functions to get the value of MAX_RAND : mt_getrandmax « Math « PHP






Random generators provide functions to get the value of MAX_RAND

 
<?php 
echo "getrandmax = " . getrandmax() . "\n"; 
echo "mt_getrandmax = " . mt_getrandmax() . "\n"; 
?>
  
  

Related examples in the same category