PHP gmp_lcm() Function Last Updated : 28 Apr, 2025 Comments Improve Suggest changes 1 Likes Like Report The gmp_lcm() is an inbuilt function in PHP that is used to calculate the least common multiple (LCM) of two or more integers. Syntax: gmp_lcm(GMP|int|string $num1, GMP|int|string $num2): GMPParameters: This function accepts two parameters that are described below. $num1: A GMP number resource representing the first integer.$num2: A GMP number resource representing the second integer.Return Values: The gmp_lcm() function returns the lcm of two integers which is provided by the user. Program 1: The following program demonstrates gmp_lcm() function. PHP <?php // Assuming you have the GMP // extension enabled $a = gmp_init(12); $b = gmp_init(18); $lcm = gmp_lcm($a, $b); echo "LCM of $a and $b is: $lcm\n"; ?> Output: LCM of 12 and 18 is: 36Program 2: The following program demonstrates gmp_lcm() function. PHP <?php // Assuming you have the GMP // extension enabled $a = gmp_init(12); $b = gmp_init(18); $c = gmp_init(24); $lcm_of_three = gmp_lcm($a, gmp_lcm($b, $c)); echo "LCM of $a, $b, and $c is: $lcm_of_three\n"; ?> Output: LCM of 12, 18, and 24 is: 72Reference: https://www.php.net/manual/en/function.gmp-lcm.php Create Quiz Comment N neeraj3304 Follow 1 Improve N neeraj3304 Follow 1 Improve Article Tags : PHP PHP-function PHP-gmp Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like