Open In App

PHP | gmp_export() function

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: 

Return Value: The function returns a string on success and FALSE on failure.



Below program illustrate the gmp_export() function in 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: 

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

Article Tags :