MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $x = 5; function fun() { echo "$x"; } fun(); ?> |
| A. | 0 |
| B. | 5 |
| C. | Nothing |
| D. | Error |
| Answer» D. Error | |