MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code? <?php function foo($msg) { echo "$msg"; } $var1 = "foo"; $var1("will this work"); ?> |
| A. | Error |
| B. | $msg |
| C. | 0 |
| D. | Will this work |
| Answer» E. | |