What will be the output of the following PHP code ?
<?php
function string($title);
{
$title = ucwords($title);
echo lcfirst($title);
}
string("welcome to compsciedu site");
?>
- Welcome to compsciedu site
- Welcome To Compsciedu Site
- WELCOME TO COMPSCIEDU SITE
- welcome To Compsciedu Site
(d).welcome To Compsciedu Site
need an explanation for this answer? contact us directly to get an explanation for this answer