Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
echo lcfirst("welcome to India");
?>
Answer : Option A
Explanation :
The lcfirst() function converts the first character of a string to lowercase.
Be The First To Comment