PHP/Math/mt getrandmax

Материал из Web эксперт
Перейти к: навигация, поиск

Random generators provide functions to get the value of MAX_RAND

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