I am using PHP 7.0.2
At one place in the manual on integers, I saw the below statement :
Integers can be specified in decimal (base 10), hexadecimal (base 16), octal (base 8) or binary (base 2) notation, optionally preceded by a sign (- or +).
and at one place in the manual I saw below contradictory statement :
PHP does not support unsigned integers.
Due to these two sentences I got confused. At one place it's saying that an integer can optionally be preceded by a sign which means whenever I use any integer, preceding it with a sign(- or +) or not will be my choice.
And at the same time it's saying that PHP does not support unsigned integers.
So, does it say that whenever I use any integer without preceding it with a sign(+ or -) won't it be considered as a legal integer in PHP?