Examveda
Examveda

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");
?>

A. TIME TO LIVE KING SIZE

B. Time to live king size

C. Uppercase

D. Time To Live King Size

Answer: Option D

Solution(By Examveda Team)

The ucwords() function converts the first character of each word in a string to uppercase.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions