Capitalize the First Letter of Each Word in a String using PHP July 21, 2021 PHP 0 Comments 741 Views ucwords function <?php $text = 'this is a simple text'; $result = ucwords($text); echo $result; // This Is A Simple Text
Leave a Comment
Cancel reply