<?phpuse Zend\Math\BigInteger\BigInteger;$i = 100000000000000000000 + 1;var_dump($i);$bcmath = BigInteger::factory('Gmp');$i = $bcmath->add('100000000000000000000', '1');var_dump($i);