• 技术文章 >php教程 >php手册

    PHP4.04 增加了对无限精度运算的支持

    2016-06-13 10:21:31原创295
    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

    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.

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    上一篇:PHP脚本的8个技巧(7) 下一篇:“在phpMyAdmin使用用户口令登陆”补充
    千万级数据并发解决方案

    相关文章推荐

    • 模拟OICQ的实现思路和核心程序三转--建议加入精华区• PHP魔术常量• Smarty foreach控制循环次数的实现详解• 完美解决令人抓狂的zend studio 7代码提示(content Assist)速度慢的问题• PHP过滤器的实现方法第1/2页
    1/1

    PHP中文网