PHP/Math/getrandmax
Версия от 10:37, 26 мая 2010; (обсуждение)
Both random generators provide functions to get the value of MAX_RAND.
<?php
echo "getrandmax() = " . getrandmax() . "\n";
echo "mt_getrandmax() = " . mt_getrandmax() . "\n";
?>
<?php
echo "getrandmax() = " . getrandmax() . "\n";
echo "mt_getrandmax() = " . mt_getrandmax() . "\n";
?>