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