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
Uppercase
Time to live king size
Time To Live King Size

ANSWER DOWNLOAD EXAMIANS APP