Answers for "php string to title case"

PHP
0

php title case

<?php
$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
Posted by: Guest on May-06-2021

Browse Popular Code Answers by Language