Примеры

Пример #1 Factorial function using GMP

<?php
function fact($x
{
    
$return 1;
    for (
$i=2$i $x$i++) {
        
$return gmp_mul($return$i);
    }
    return 
$return;
}

echo 
gmp_strval(fact(1000)) . "\n";
?>

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

Коментарии

Автор:
If you ever need to use this, please see function.gmp-fact
2017-12-29 17:08:35
http://php5.kiev.ua/manual/ru/gmp.examples.html

    Поддержать сайт на родительском проекте КГБ