What will be the output of the following PHP code ?
<?php
static $x = 0;
function fun()
{
echo $x;
$x++;
}
fun();
fun();
fun();
?>
<?php
static $x = 0;
function fun()
{
echo $x;
$x++;
}
fun();
fun();
fun();
?>
A. 012
B. 123
C. Nothing
D. Error
Answer: Option C
Join The Discussion