Assigning an OCTAL Value to the Variable.
Assigning an OCTAL Value to the Variable.
To assign a Octal value to the PHP variable, by preceding or leading zeroes in the given value.
PHP Interpreter treats numbers beginning with 0 as octal.
Example:
echo $val = 123;
here, it returns the $val = 123.
But, echo $val=0123;
here, it returns the $val = 83.
(The decimal value of 123 is 83).
