I trying to accomplish the following:
$string = "i want to convert this string to the following";
and convert it to something like this:
echo $string;
// I Want TO Convert This String TO THE Following
Thus: Capitalize the First Letter of All Words in a string and if a word is 3 characters or less, make the whole word Capitalized in the string. How cant this be done with PHP?
you could explode() your string and loop over it to check the length: