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