DeveloperBreeze

Convert String to Title Case

$inputString = 'hello world';
$titleCaseString = ucwords($inputString);
echo $titleCaseString;

Discussion 0

Please sign in to join the discussion.

No comments yet. Start the discussion!