Question:What would be the output of the following code? <?php $string = 'good day'; $string = ucwords($string); echo $string; ?>
A good day B GOOD DAY C Good Day D None
+ AnswerC
+ Report