PHP Community Marketing Expert Question:

Tell me what does the following code output?

$i = 016;
echo $i / 2;?

Tweet Share WhatsApp

Answers:

Answer #1The 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.

Answer #2output will be 7

Download PHP Community Marketing Expert PDF Read All 61 PHP Community Marketing Expert Questions
Previous QuestionNext Question
Explain me what are the 3 scope levels available in PHP and how would you define them?Tell me what library is used for pdf in PHP?