gmp_export()函數是PHP中的內置函數,可將GMP數字(GNU多重精度:用於大數字)導出為二進製字符串。
用法:
string gmp_export ( GMP $gmpnumber, int $word_size, int $options )
參數:gmp_export()函數接受上麵和下麵描述的三個參數:
- $gmpnumber: 這是gmp_export()函數的必需參數,它是該函數要導出的數字。
- $word_size: 此參數包含每個二進製數據塊中的字節數。此參數主要與options參數同時使用。該參數的默認值為1。
- $options: 此參數的默認值為GMP_MSW_FIRST | GMP_NATIVE_ENDIAN。
返回值:該函數在成功時返回字符串,在失敗時返回FALSE。
以下示例程序旨在說明PHP中的gmp_export()函數:
<?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";
?>
輸出:
AA
相關文章:
參考:http://php.net/manual/en/function.gmp-export.php
相關用法
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自priya_1998大神的英文原創作品 PHP | gmp_export() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。