I want to use PHP to clean up some titles by capitalizing each word, including those following a slash. However, I do not want to capitalize the words 'and', 'of', and 'the'.
Here are two example strings:
accounting technology/technician and bookkeeping
orthopedic surgery of the spine
Should correct to:
Accounting Technology/Technician and Bookkeeping
Orthopedic Surgery of the Spine
Here's what I currently have. I'm not sure how to combine the implosion with the preg_replace_callback.
// Will capitalize all words, including those following a slash
$major = implode('/', array_map('ucwords',explode('/',$major)));
// Is supposed to selectively capitalize words in the string
$major = preg_replace_callback("/[a-zA-Z]+/",'ucfirst_some',$major);
function ucfirst_some($match) {
$exclude = array('and','of','the');
if ( in_array(strtolower($match[0]),$exclude) ) return $match[0];
return ucfirst($match[0]);
}
Right now it capitalizes all words in the string, including the ones I don't want it to.