PHP: Why the 'abs' function returns a wrong number if it begins with zero?
- by Paulocoghi
The code "abs(07000000)" returns 28672, but the code "abs(7000000)" returns 70000.
Did the zero at the beginning means that the number is interpreted as hex?
Thank you!