PHP 8.4.0 RC4 available for testing

Beispiele

Beispiel #1 Fakultätsfunktion unter Verwendung von 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";
?>

Dies berechnet die Fakultät von 1000 sehr schnell (eine wirklich große Zahl).

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top