Jump to content

[SOLVED] Auto Caplitalize Titles


Zeradin

Recommended Posts

There are a couple of methods:

 

1:

$name = "joe bloggs";
// will print Joe Bloggs
print ucwords($name);

 

2:

$name = "david o'leary";
// will print David O'Leary - ucwords() will not in this case
print mb_convert_case($name, MB_CASE_TITLE, "UTF-8");

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.