PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

gmp_or> <gmp_neg
Last updated: Fri, 18 Jul 2008

view this page in

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.



add a note add a note User Contributed Notes
gmp_nextprime
There are no user contributed notes for this page.

gmp_or> <gmp_neg
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites