phpseclib: BigInteger Examples and Notes

Action:

<?php
include('Math/BigInteger.php');

$a = new Math_BigInteger(5);
$b = new Math_BigInteger(3);

echo $a->add($b); // outputs 5
?>

Notes

Which version of phpseclib are you using?