PHP 8.5.0 Alpha 1 available for testing

Voting

: max(one, three)?
(Example: nine)

The Note You're Voting On

barnaby ritchley at exeye dot co dot uk
18 years ago
A very easy way to convert to title case:

function titleCase($string)
{
return ucwords(strtolower($string));
}

$myString = "SOME TEXT";

echo titleCase($myString);

//will print, "My Text"

<< Back to user notes page

To Top