mt_getrandmax


URL apg

DISPLAYS the largest possible integer  RANDOM VALUE .



RANDOM NUMBERS

are numbers that occur in a sequence such that two conditions are met:

1 . the values are uniformly distributed over a defined interval or set.
2 . it is impossible to predict future values based on past or present ones.

Random numbers are important in statistical analysis and probability theory.



<?php

int mt_getrandmax
()
             
?>

  1 EXERCISE   

<?php
 
$grdm01  
mt_getrandmax();

echo 
'The maximum random number for this system is:<br><br>' $grdm01 '<br><br>';

?> 

 RESULT   

The maximum integer random number is:

2147483647

In your system can be different.