big int php

Solutions on MaxInterview for big int php by the best coders in the world

showing results for - "big int php"
Alyssa
19 Jul 2017
1<?php
2    include('Math/BigInteger.php');
3
4    $a = new Math_BigInteger(2);
5    $b = new Math_BigInteger(3);
6    $c = $a->add($b);
7    echo $c->toString(); 	// 5
8?>