PHP | gmp_neg() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The gmp_neg() function is an in-built function in PHP which returns the negative of a GMP number (GNU Multiple Precision). Syntax : gmp_neg( $num ) Parameters : The function accepts only one mandatory parameter $num which can be either a GMP number resource in PHP 5.5 or a GMP object in PHP version 5.6 and later, or numeric strings can be passed to the function provided that it is possible to convert those strings to numbers. Return Values : This function returns a GMP number (in PHP 5.5 and earlier) or a GMP object (in PHP 5.6 and later) which is negative of the value of $num. Examples : Input : $num = 255 Output : -255 Input : $num = 128 Output : -128 Below programs will illustrate the gmp_neg() function : Program 1: php <?php //PHP program to illustrate //gmp_neg() function $num = gmp_init("255"); $num1 = gmp_neg($num); echo gmp_strval($num1); ?> Output: -255 Program 2: php <?php //PHP program to illustrate //gmp_neg() function $num = gmp_init("314567128"); $num1 = gmp_neg($num); echo gmp_strval($num1); ?> Output: -314567128 Reference : https://www.php.net/manual/en/function.gmp-neg.php Create Quiz Comment R RICHIK BHATTACHARJEE Follow 0 Improve R RICHIK BHATTACHARJEE Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-gmp Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like