-
What will be the output of the following PHP code?
<?php
echo lcfirst("WELCOME TO INTERVIEW MANIA!");
?>
-
- WELCOME TO INTERVIEW MANIA!
- welcome to interview mania!
- Welcome To Interview Mania!
- WELCOME to interview mania!
- wELCOME TO INTERVIEW MANIA!
Correct Option: E
The lcfirst() function converts the first character of a string to lowercase.