1.

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

A. 000
B. 012
C. 123
D. Error
Answer» C. 123


Discussion

No Comment Found