Assigning a variable the value of 0143, but its showing a different number
PHP Interpreter treats numbers beginning with 0 as octal. So that if you specify 0 before any number then php assume that you want to use this number as a octal number.
Tags: Interpreter, octal number
