How to uppercase first letter of each word in PHP
How to uppercase first letter of each word in PHP
1 Answer
You can use ucwords() function to uppercase the first letter of each word in PHP
Example
ucwords('easy way to uppercase it);
Output
Easy Way To Uppercase It
answer Link