Reputation: 3267
In my code i have a string and i want to capitalize first letter of each word using php function.
This is my code:
$str = "144 beach st,daytona beach,FL,32114";
echo ucfirst($str);
It displays the same result:
144 beach st,daytona beach,FL,32114
So how can i capitalize the word?If there is any mistake in the code?
Upvotes: 0
Views: 88