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