PHP/Math/getrandmax — различия между версиями

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

Текущая версия на 07:06, 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";
?>