Source Code:
(back to article)
<?php // Get the maximum value that can be generated by mt_rand() using the mt_getrandmax() function $result = mt_getrandmax(); // Output the result echo $result; ?>
Result:
Report an issue