程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP4.04 增加了對無限精度運算的支持

PHP4.04 增加了對無限精度運算的支持

編輯:關於PHP編程

These functions allow you to work with arbitrary-length integers using the GNU MP library. In order to have these functions available, you must compile PHP with GMP support by using the --with-gmp option.
通過 GUN MP 庫,這些函數允許你使用任意長度的整數。你需要編譯 php 時使用 --with-gmp 參數

You can download the GMP library from http://www.swox.com/gmp/. This site also has the GMP manual available.
你可以從 http://www.swox.com/gmp/ 下載 GMP 庫,同時有手冊。

You will need GMP version 2 or better to use these functions. Some functions may require more recent version of the GMP library.
你需要 GMP 2.0 或更好的來使用這些函數。某些函數可能需要最新的 GMP庫

These functions have been added in PHP 4.0.4.

Note: Most GMP functions accept GMP number arguments, defined as resource below. However, most of these functions will also accept numeric and string arguments, given that it is possible to convert the latter to a number. Also, if there is a faster function that can operate on integer arguments, it would be used instead of the slower function when the supplied arguments are integers. This is done transparently, so the bottom line is that you can use integers in every function that expects GMP number. See also the gmp_init() function.
注意:大多數 GMP 函數接受下面資源定義的 GMP 數值參數,當然,大多數函數也接受數字和字符串參數,但是會被轉化為數字。同時,如果存在更快的函數來操作整形參數,則會使用那個更快的函數來操作整數。這是當然的,所以你可以在需要 GMP 數字的地方用整數參數。

Example 1. Factorial function using GMP

<?php
function fact ($x) {
if ($x <= 1)
return 1;
else
return gmp_mul ($x, fact ($x-1));
}

print gmp_strval (fact (1000)) . "n";
?>

This will calculate factiorial of 1000 (pretty big number) very fast.


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved