Q. What will be the output of the following PHP code?
Code:
<?php
echo ucwords("hi, there how are you?");
?>
β
Correct Answer: (B)
Hi, There How Are You?
<?php
echo ucwords("hi, there how are you?");
?>
You must be Logged in to update hint/solution