

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $a = "hello"; if (strlen($a)) print strlen($a); else print "hi"; ?> |
A. | Hellolength |
B. | 5 |
C. | Hi |
D. | Error |
Answer» C. Hi | |