MCQOPTIONS
Saved Bookmarks
| 1. |
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» D. 111 | |