DEV Community

PHP capitalize first letter of each word

Lalit Kumar on December 20, 2020

In this topic, we will learn and explore how can we capitalize on the first letter of each word in PHP .PHP has a variety of inbuilt functions to m...
Collapse
 
moopet profile image
Ben Sinclair

If you're using PHP to generate HTML documents, I'd massively recommend using CSS for this instead. There's no reason for search engines, etc., to know your text as title-case when it doesn't need to be, and if you want to display it differently elsewhere or decide later on to change it you need to rebuild your code rather than tweak a stylesheet.