PHP | gmp_export() function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The gmp_export() function is an inbuilt function in PHP which exports a GMP number(GNU Multiple Precision: For Large Numbers) to a binary string. Syntax: string gmp_export ( GMP $gmpnumber, int $word_size, int $options ) Parameters: The gmp_export() function accepts three parameters as shown above and described below: $gmpnumber: This is a required parameter of gmp_export() function, it is the number to be exported by the function.$word_size: This parameter contains the number of bytes in each chunk of binary data. This parameter is mainly used simultaneously with the options parameter. The default value of this parameter is 1.$options: This parameter has default value of GMP_MSW_FIRST | GMP_NATIVE_INDIAN. Return Value: The function returns a string on success and FALSE on failure. Below program illustrate the gmp_export() function in PHP: PHP <?php // PHP code implementing the gmp_export function // The gmp_init() function creates a gmp number // form a string or number $number = gmp_init(16705); echo gmp_export($number) . "\n"; ?> Output: AA Related Articles: PHP | gmp_add() for adding large numbersPHP | gmp_invert() for inverse moduloPHP | gmp_rootrem() Function Reference: https://www.php.net/manual/en/function.gmp-export.php Create Quiz Comment P priya_1998 Follow 0 Improve P priya_1998 Follow 0 Improve Article Tags : Web Technologies PHP PHP-function 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