1.

What will be the output of the following PHP code ?
<?php
function str($Message)
{
$Message = ucwords($Message);
echo lcfirst($Message);
}
str("this is important...");
?>

A. this Is Important...
B. this is important...
C. Error
D. Nothing
E. None of these
Answer» B. this is important...


Discussion

No Comment Found

Related MCQs