<?php
function fact($x)
{
$factorial = 1;
for ($i=2; $i < $x; $i++) {
$factorial = gmp_mul($factorial, $i);
}
return $factorial;
}
echo gmp_strval(fact(1000)) . "\n";
?>
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_mul — Prodotto di numeri