A time saving function of PHP in capitalizing first letter in every word. ucwords() is a very helpful function that can be used in content titles.
Sample Code:
$title = “a quick brown fox jumps over the lazy dog”;
$newTitle = ucwords($title);
echo “Title – $newTitle”;
Output :
Title – A Quick Brown Fox Jumps Over The Lazy Dog
$title = “a quick brown fox jumps over the lazy dog”;
$newTitle = ucwords($title);
echo “Title – $newTitle”;
Output :
Title – A Quick Brown Fox Jumps Over The Lazy Dog




Comments
There are no comments for this post.
Write a Comment