Wednesday, November 19, 2025
HomeLanguagesPHP | gmp_nextprime() Function

PHP | gmp_nextprime() Function

The gmp_nextprime() is an inbuilt function in PHP which is used to calculate the prime number just greater than a given GMP number(GNU Multiple Precision : For large numbers).

Syntax:

gmp_nextprime($num)

Parameters: This function accepts a GMP number $num as a mandatory parameter as shown in the above syntax whose next prime we want to find. This parameter can be a GMP object in PHP version 5.6 and later, or we are also allowed to pass a numeric string provided that it is possible to convert that string to a number.

Return Value: This function returns a GMP number which is the prime number just greater than the GMP number passed to it as a parameter.

Examples:

Input : gmp_nextprime("15")
Output : 17

Input : gmp_nextprime("21")
Output : 23

Below programs illustrate the gmp_nextprime() function in PHP :

Program 1: Program to calculate the prime number just greater than a GMP number when numeric string as GMP number is passed as an argument.




<?php
// PHP program to calculate the prime number greater 
// than that of a GMP number passed as arguments 
   
// strings as GMP numbers 
$num = "135";
  
// gives the prime number just greater
// than 135 as a GMP number
$res = gmp_nextprime($num);
  
echo $res;
  
?>


Output:

137

Program 2: Program to calculate the prime number greater than that of a GMP number when GMP number is passed as an argument.




<?php
// PHP program to calculate the prime  
// number greater than that of a GMP number
  
// creating GMP numbers using gmp_init()
$num = gmp_init(1000);
  
// gives the prime number just greater
// than 1000 as a GMP number
$res = gmp_nextprime($num);
  
echo $res;
  
?>


Output:

1009

Reference:
http://php.net/manual/en/function.gmp-nextprime.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS