Examveda
Examveda

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

A. 012

B. 123

C. Nothing

D. Error

Answer: Option C

Solution(By Examveda Team)

Since variable x is not defined inside the function fun(), nothing will be printed.

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

Join The Discussion

Related Questions on Operators and Expressions in php