Examveda
Examveda

What will be the output of the following PHP code ?
<?php
function fun()
{
    $x = 0;
    echo $x;
    $x++;
}
fun();
fun();
fun();
?>

A. 012

B. 123

C. 000

D. 111

Answer: Option C

Solution(By Examveda Team)

Every time the function is called the value of x becomes 0, therefore we get 0 on every function call.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php