Q. What will be the output of the following PHP code?
Code:
<?php $Message = "this is important message..."; echo ucwords($Message); ?>
β
Correct Answer: (B)
This Is Important Message...
<?php $Message = "this is important message..."; echo ucwords($Message); ?>
You must be Logged in to update hint/solution