Q. What will be the output of the following PHP code?
Code:
<?php
function uppercase($string)
{
echo ucwords($string);
}
$wow = "uppercase";
$wow("Time to live king size");
?>
β
Correct Answer: (A)
Time To Live King Size