You are here: Blog » Code Snippets » Capitalize The First Letter Of Each Word With PHP
Capitalize The First Letter Of Each Word With PHP
April 22, 2019
Suppose that you have a text string which is a sentence, and you want to capitalize the first letter of each word in the sentence. The code below will show you can do this with PHP.
The Code
1
2
3
4
<?php
$thesentence="the quick brown fox jumped over the lazy dog.";
echoucwords($thesentence);//prints out "The Quick Brown Fox Jumped Over The Lazy Dog."