PHP4.04 增加了对无限精度运算的支持
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. You will need GMP version 2 or better to use these functions. Some functions may require more recent version of the GMP library. 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. Example 1. Factorial function using GMP <?php print gmp_strval (fact (1000)) . "n"; This will calculate factiorial of 1000 (pretty big number) very fast.
|
- 上一篇:PHP4.04 新增加了专用的字符函数 Ctype
- 下一篇:PHP中的Java扩展