如果您需要使用它,请查看 https://php.net/manual/en/function.gmp-fact.php
示例 #1 使用 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";
?>
这将非常快地计算 1000 的阶乘(非常大的数字)。