Funzioni GMP
PHP Manual

gmp_random_bits

(PHP 5 >= 5.6.3)

gmp_random_bitsRandom number

Descrizione

GMP gmp_random_bits ( integer $bits )

Generate a random number. The number will be between 0 and (2 ** bits) - 1.

bits must greater than 0, and the maximum value is restricted by available memory.

Elenco dei parametri

bits

The number of bits.

Può essere o una resource numero GMP, oppure una stringa numerica dal momento che è possibile convertire quest'ultimo in un numero.

Valori restituiti

A random GMP number.

Esempi

Example #1 gmp_random_bits() example

<?php
$rand1 
gmp_random_bits(3); // random number from 0 to 7
$rand2 gmp_random_bits(5); // random number from 0 to 31

echo gmp_strval($rand1) . "\n";
echo 
gmp_strval($rand2) . "\n";
?>

Il precedente esempio visualizzerà:

3
15


Funzioni GMP
PHP Manual