PHP Extension: Need to fix capitalization

I need help with a PHP capitalization issue.
The string needs to reflect the first 4 - 6 letters as lower case and the last (however many) in uppercase. I have not been able to use the right string… please someone help!!!

if you want 5 or 6 to be lowered , just change 4 with them
[php]
function string_cap($str) {
$first = strtolower(substr($str,0,4));
$second = strtoupper(substr($str,4,strlen($str) - 4));
return $first . $second;
}
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service