- Forums
- PHP
- How To Make Capital Letters In Php Capitalise Words
This Page Contains information about How To Make Capital Letters In Php Capitalise Words By wallpaperama in category PHP with 3 Replies. [1102], Last Updated: Sat May 18, 2024
wallpaperama
Mon Feb 25, 2008
3 Comments
4283 Visits
ucwords()
to capitalize a word you use the ucwords() function.
lest say i want to capitalise this: wallpaperama is cool
i can use this:
<?php
$word = "wallpaperama is cool";
echo ucwords($word);
?>
the output will be:
Wallpaperama Is Cool
https://www.wallpaperama.com/forums/how-to-make-capital-letters-in-php-capitalise-words-t5802.html