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

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

Версия 13:37, 26 мая 2010

Both random generators provide functions to get the value of MAX_RAND.

   <source lang="html4strict">

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

 </source>