gmp_nextprime
(PHP 5 >= 5.2.0)
gmp_nextprime — Find next prime number
Descrizione
resource gmp_nextprime
( int $a
)
Find next prime number
Elenco dei parametri
- a
-
Può essere o una resource numero GMP, oppure una stringa numerica dal momento che è possibile convertire quest'ultimo in un numero.
Valori restituiti
Return the next prime number greater than a , as a GMP number.
Esempi
Example#1 gmp_nextprime() example
<?php
$prime1 = gmp_nextprime(10); // next prime number greater than 10
$prime2 = gmp_nextprime(-1000); // next prime number greater than -1000
echo gmp_strval($prime1) . "\n";
echo gmp_strval($prime2) . "\n";
?>
Il precedente esempio visualizzerà :
11 -997
Note
Nota: This function uses a probabilistic algorithm to identify primes and chances to get a composite number are extremely small.