Is there a BigInteger class in PHP? If so, how do I access it or use it?
Hopefully helpfull links :
EDIT: Math_BigInteger
Example from http://phpseclib.sourceforge.net/documentation/math.html :
Implements an arbitrary precision integer arithmetic library. Uses gmp or bcmath, if available, and an internal implementation, otherwise.
add($b);
echo $c->toString(); // outputs 5
?>