PHP Functions
What will be the output of the following PHP code ?
function uppercase($string) {
echo ucwords($string);
}
$wow = "uppercase";
$wow("Time to live king size");

TIME TO LIVE KING SIZE
Time to live king size
Time To Live King Size
Uppercase

ANSWER DOWNLOAD EXAMIANS APP