For learning experience, I want to see the maximum integer representable by PHP and whether or not it will err if the range limit is exceeded. I tried this , but it just prints the sum well.
PHP_INT_MAX + PHP_INT_MAX // outputs 4294967294.0
// expected warning here, but nothing happened. result returned good.
If PHP_INT_MAX
is the maximum integer php can handle, how come we can exceed it on our expressions?