What will be the output of the following PHP code ?
<?php
function uppercase($string)
{
echo ucwords($string);
}
$wow = "uppercase";
$wow("Time to live king size");
?>
<?php
function uppercase($string)
{
echo ucwords($string);
}
$wow = "uppercase";
$wow("Time to live king size");
?>
A. TIME TO LIVE KING SIZE
B. Time to live king size
C. Uppercase
D. Time To Live King Size
Answer: Option D
Join The Discussion