What does the following code output? Technology Community › Category: PHP › What does the following code output? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem Consider: $i = 016; echo $i / 2; What will be the output? The Output should be 7. The leading zero indicates an _octal number _in PHP, so the number evaluates to the decimal number 14 instead to decimal 16.