<?phpuse Laminas\Math\BigInteger\BigInteger;$i = 100000000000000000000 + 1;dump($i);$bcmath = BigInteger::factory('Gmp');$i = $bcmath->add('100000000000000000000', '1');dump($i);
^ 1.0E+20
^ "100000000000000000001"