字符串函数
在线手册:中文  英文

ucfirst

(PHP 4, PHP 5)

ucfirst将字符串的首字母转换为大写

说明

string ucfirst ( string $str )

str 的首字符(如果首字符是字母)转换为大写字母,并返回这个字符串。

注意字母的定义取决于当前区域设定。例如,在默认的 “C” 区域,字符 umlaut-a(?)将不会被转换。

参数

str

输入字符串。

返回值

返回结果字符串。

范例

Example #1 ucfirst() 范例

<?php
$foo 
'hello world!';
$foo ucfirst($foo);             // Hello world!

$bar 'HELLO WORLD!';
$bar ucfirst($bar);             // HELLO WORLD!
$bar ucfirst(strtolower($bar)); // Hello world!
?>

参见


字符串函数
在线手册:中文  英文

用户评论:

Nethor (2012-10-05 16:14:18)

Simple but workable solution:

<?php
mb_internal_encoding
("UTF-8");  // before calling the function 

function utf8_ucfirst($str){ 
    
preg_match_all("~^(.)(.*)$~u"$str$arr);
    return 
mb_strtoupper($arr[1][0]).$arr[2][0];
    }
?>

Martynas (2012-05-30 18:15:03)

This function is multilanguage. It converts only the first character of the string to uppercase (UTF-8). Other chars in string will be unchanged.
Usage: my_ucfirst("?lepet?s ABC 123 abc");
// Returns ?lepet?s ABC 123 abc

<?php
function substr_unicode($str$s$l null) {
    return 
join(""array_slice(
        
preg_split("//u"$str, -1PREG_SPLIT_NO_EMPTY), $s$l));
}

function 
my_ucfirst($string$e ='utf-8') {
        
$orig_string $string;
        if (
function_exists('mb_strtoupper') && function_exists('mb_substr') && !empty($string)) {
            
$string mb_strtolower($string$e);
            
$upper mb_strtoupper($string$e);
            
preg_match('#(.)#us'$upper$matches);
            
$string $matches[1] . mb_substr($string1mb_strlen($string$e), $e);
        } else {
            
$string ucfirst($string);
        }
        
        
$string1 substr_unicode($string01);
        
$string2 substr_unicode($orig_string1);
        
$string $string1 $string2;
        
        return 
$string;
    }
?>

idont at remember dot it (2012-05-18 11:21:02)

In case you need a French version of ucfirst:

"été indien" => "Eté indien"
"?a va?" => "?a va?"

<?php
function frenchUcfirst($v) {
  
$lowCase  "\\xE0\\xE1\\xE2\\xE3\\xE4\\xE5\\xE7\\xE8\\xE9\\xEA\\xEB\\xEC\\xED\\xEE\\xEF";
  
$lowCase .= "\\xF1\\xF2\\xF3\\xF4\\xF5\\xF6\\xF8\\xF9\\xFA\\xFB\\xFC\\xFD\\xFF\\u0161";
  
$upperCase "AAAAAA\\xC7EEEEIIIINOOOOOOUUUUYYS";
  return 
strtoupper(strtr(substr($v01), $lowCase$upperCase)) . substr($v1);
}
?>

Note:
- Latin non french accented characters follow the same rule:
"?nd?" => "And?"
- Non ASCII characters in the function are in HEX format to avoid encoding issue...

drpain at webster dot org dot za (2012-03-12 19:48:16)

<?php

// Custom function returns a string with the first word in a bigger fontsize, with a default of 22px.

function ucsentance($string$fontSize=22) {

  
// Do some basic processing on the data and find the first space before returning the modified string. 
  
$trimmed trim($string);
  
$getSpace strpos($trimmed,' ');     
  
$firstWord substr($trimmed0$getSpace); 
  
$firstWord ucfirst($firstWord);   
  
$afterFirstWord substr($trimmed$getSpace);
  
$output "<b style='font-size: " $fontSize "px;'>" $firstWord "</b>" $afterFirstWord;
  return 
$output;
}

// Example of it's use
$string "Hello World, I am a bouncy castle!";
echo 
ucsentance($string);
?>

This will yield <b style="font-size: 22px;">Hello</b> World, I am a bouncy castle!

qeremy [atta] gmail [dotta] com (2012-02-27 16:41:45)

A proper Turkish solution;

<?php
function ucfirst_turkish($str) {
    
$tmp preg_split("//u"$str2PREG_SPLIT_NO_EMPTY);
    return 
mb_convert_case(
        
str_replace("i""?"$tmp[0]), MB_CASE_TITLE"UTF-8").
        
$tmp[1];
}

$str "iyilik güzelL?K";
echo 
ucfirst($str) ."\n";   // Iyilik güzelL?K
echo ucfirst_turkish($str); // ?yilik güzelL?K
?>

vlknmtn at gmail dot com (2011-08-17 16:31:16)

Turkish solution:

<?php
mb_internal_encoding
("UTF-8");
mb_regex_encoding("UTF-8");

function 
tr_ilkbuyuk($text)
{
    
$text str_replace("I","?",$text);
    
$text mb_strtolower($text'UTF-8');
    
    if(
$text[0] == "i")
        
$tr_text "?".substr($text1);
    else
        
$tr_text mb_convert_case($textMB_CASE_TITLE"UTF-8");
    
    return 
trim($tr_text);
}

function 
tr_ucwords($text)
{
    
$p explode(" ",$text);
    if(
is_array($p))
    {
        
$tr_text "";
        foreach(
$p AS $item)
            
$tr_text .= " ".tr_ilkbuyuk($item);
            
        return 
trim($tr_text);
    }
    else
        return 
tr_ilkbuyuk($text);
}

$deger "?i?ll?lsdg";

echo 
tr_ucwords($deger);

?>

Quicker (2011-05-10 13:53:38)

if you want to ucfirst for utf8 try this one:

<?php
function ucfirst_utf8($stri){
 if(
$stri{0}>="\xc3")
     return ((
$stri{1}>="\xa0")?
     (
$stri{0}.chr(ord($stri{1})-32)):
     (
$stri{0}.$stri{1})).substr($stri,2);
 else return 
ucfirst($stri);
}
?>

It is quick, not language (but utf8) dependend and does not use any mb-functions such as mb_ucfirst.

chris at bjelleklang dot org (2011-01-26 03:03:29)

For those who want a multibyte-compliant ucfirst() without wanting to mess with encodings, this should do the trick:

<?php
function mb_ucasefirst($str){
    
$str[0] = mb_strtoupper($str[0]);
    return 
$str;
}
?>

pete at namecube dot net (2010-04-11 19:08:00)

for anyone wanting to ucfirst each word in a sentence this works for me:

<?php
function ucfirst_sentence($str)
{
    return 
preg_replace('/\b(\w)/e''strtoupper("$1")'$str);
}
?>

wilfried dot loche at fr dot adp dot com (2010-01-22 02:22:29)

If someone looks for the equivalent on Oracle DB, here it is: INITCAP. Hope this helps!

octavius (2009-09-26 17:18:45)

For lithuanian text with utf-8 encoding I use two functions (thanks [mattalexxpub at gmail dot com] and Svetoslav Marinov)

<?php
function my_ucfirst($string$e ='utf-8') {
    if (
function_exists('mb_strtoupper') && function_exists('mb_substr') && !empty($string)) {
        
$string mb_strtolower($string$e);
        
$upper mb_strtoupper($string$e);
            
preg_match('#(.)#us'$upper$matches);
            
$string $matches[1] . mb_substr($string1mb_strlen($string$e), $e);
    }
    else {
        
$string ucfirst($string);
    }
    return 
$string;
}

function 
sentence_case($string) {
    
$sentences preg_split('/([.?!]+)/'$string, -1PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
    
$new_string '';
    foreach (
$sentences as $key => $sentence) {
        
$new_string .= ($key 1) == 0?
            
my_ucfirst(strtolower(trim($sentence))) :
            
$sentence.' ';  
    }
    return 
trim($new_string);
}
?>

bgschool (2009-07-30 04:39:08)

Simple function for use ucfirst with utf-8 encoded cyrylic text

<?php
    
public function capitalize_first($str) {
        
$line iconv("UTF-8""Windows-1251"$str); // convert to windows-1251
        
$line ucfirst($line);
        
$line iconv("Windows-1251""UTF-8"$line); // convert back to utf-8
        
        
return $line;
    }
?>

svetoslavm at gmail dot com (2008-11-20 07:40:29)

For some reason this worked for me.

Mac OS 10.5.1 
PHP 5.2.6

<?php
   
/**
     * ucfirst UTF-8 aware function
     *
     * @param string $string
     * @return string
     * @see http://ca.php.net/ucfirst
     */
    
function my_ucfirst($string$e ='utf-8') {
        if (
function_exists('mb_strtoupper') && function_exists('mb_substr') && !empty($string)) {
            
$string mb_strtolower($string$e);
            
$upper mb_strtoupper($string$e);
            
preg_match('#(.)#us'$upper$matches);
            
$string $matches[1] . mb_substr($string1mb_strlen($string$e), $e);
        } else {
            
$string ucfirst($string);
        }
        return 
$string;
    }
?>

Svetoslav Marinov
http://slavi.biz

mattalexxpub at gmail dot com (2008-11-09 17:10:45)

This is what I use for converting strings to sentence case:

<?php
function sentence_case($string) {
    
$sentences preg_split('/([.?!]+)/'$string, -1PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
    
$new_string '';
    foreach (
$sentences as $key => $sentence) {
        
$new_string .= ($key 1) == 0?
            
ucfirst(strtolower(trim($sentence))) :
            
$sentence.' ';
    }
    return 
trim($new_string);
}

print 
sentence_case('HMM. WOW! WHAT?');

// Outputs: "Hmm. Wow! What?"
?>

prokur.net - there is my email (2008-06-29 15:01:13)

I believe that mb_ucfirst will be soon added in PHP, but for now this could be useful
<?php

if (!function_exists('mb_ucfirst') && function_exists('mb_substr')) {
    function 
mb_ucfirst($string) {
        
$string mb_strtoupper(mb_substr($string01)) . mb_substr($string1);
        return 
$string;
    }
}

?>

it also check is mb support enabled or not

NoName (2008-03-12 12:23:55)

For strings with diactrical marks (umlauts, etc.), consider mb_convert_case().

charliefortune (2008-02-20 03:48:10)

Here's a function to capitalize segments of a name, and put the rest into lower case. You can pass the characters you want to use as delimiters.

i.e. <?php echo nameize("john o'grady-smith"); ?>

returns John O'Grady-Smith

<?php

function nameize($str,$a_char = array("'","-"," ")){    
    
//$str contains the complete raw name string
    //$a_char is an array containing the characters we use as separators for capitalization. If you don't pass anything, there are three in there as default.
    
$string strtolower($str);
    foreach (
$a_char as $temp){
        
$pos strpos($string,$temp);
        if (
$pos){
            
//we are in the loop because we found one of the special characters in the array, so lets split it up into chunks and capitalize each one.
            
$mend '';
            
$a_split explode($temp,$string);
            foreach (
$a_split as $temp2){
                
//capitalize each portion of the string which was separated at a special character
                
$mend .= ucfirst($temp2).$temp;
                }
            
$string substr($mend,0,-1);
            }    
        }
    return 
ucfirst($string);
    }

?>

webmaster at onmyway dot cz (2008-02-11 03:31:41)

Inspired by the lcfirst function a simple mb_lcfirst to cope with multibyte strings:

<?php
function mb_lcfirst($str$enc null)
{
  if(
$enc === null$enc mb_internal_encoding();
  return 
mb_strtolower(mb_substr($str01$enc), $enc).mb_substr($str1mb_strlen($str$enc), $enc);
}
?>

Uwe (2007-07-26 08:08:42)

@adefoor, Ken and Zee
Changing the case can only be done by understanding the text. Take for example "USA", "Sunday", "March", "I am ...", abbreviations like "prob." and so on.

adefoor at gmail dot com (2007-07-12 11:57:02)

Ken and zee

One thing I would do to make this more unviersally work would be to add strtolower() around your $sentence.  Doing this will allow you to convert an all caps text block as well as an all lowercase text block.

<?php

function sentence_cap($impexp$sentence_split) {
    
$textbad=explode($impexp$sentence_split);
    
$newtext = array();
    foreach (
$textbad as $sentence) {
        
$sentencegood=ucfirst(strtolower($sentence));
        
$newtext[] = $sentencegood;
    }
    
$textgood implode($impexp$newtext);
    return 
$textgood;
}

$text "this is a sentence. this is another sentence! this is the fourth sentence? no, this is the fourth sentence.";
$text sentence_cap(". ",$text);
$text sentence_cap("! ",$text);
$text sentence_cap("? ",$text);

echo 
$text// This is a sentence. This is another sentence! This is the fourth sentence? No, this is the fourth sentence.

?>

Ken Kehler (2007-03-14 12:03:04)

@ zee: this should solve your !, ?, and any punctuations you want to add. It can probably be cleaned up a bit.

<?php

function sentence_cap($impexp$sentence_split) {
    
$textbad=explode($impexp$sentence_split);
    
$newtext = array();
    foreach (
$textbad as $sentence) {
        
$sentencegood=ucfirst($sentence);
        
$newtext[] = $sentencegood;
    }
    
$textgood implode($impexp$newtext);
    return 
$textgood;
}

$text "this is a sentence. this is another sentence! this is the fourth sentence? no, this is the fourth sentence.";
$text sentence_cap(". ",$text);
$text sentence_cap("! ",$text);
$text sentence_cap("? ",$text);

echo 
$text// This is a sentence. This is another sentence! This is the fourth sentence? No, this is the fourth sentence.

?>

zee (2007-01-30 16:09:48)

Another way to capitalize first letter of every sentence in a text, I hope it will help someone. It won't convert non-English characters, though, and ignores sentences ending with ! or ? etc.

<?php

$text
="this is a sentence. this is another sentence.";

$split=explode(". "$text);
foreach (
$split as $sentence) {
$sentencegood=ucfirst($sentence);
$text=str_replace($sentence$sentencegood$text);
}

echo 
$text// This is a sentence. This is another sentence.

?>

Carel at divers information with dotcom (2007-01-06 02:55:16)

I made a small change. Now it takes care of points in numbers
function ucsentence ($string){
$string = explode ('.', $string);
$count = count ($string);
for ($i = 0; $i < $count; $i++){
$string[$i] = ucfirst (trim ($string[$i]));
if ($i > 0){
if ((ord($string[$i]{0})<48) || (ord($string[$i]{0})>57)) {
$string[$i] = ' ' . $string[$i];
}
}
}
$string = implode ('.', $string);
return $string;
}

(2006-10-26 07:45:10)

Some simple function for cyrillic and latin letters both:
function rucfirst($str) {
if(ord(substr($str,0,1))<192) return ucfirst($str);
else
return chr(ord(substr($str,0,1))-32).substr($str,1);
}

Michael (2006-09-12 06:01:20)

This is what you would expect php to deliver if there was a built-in function named ucsentence.
function ucsentence ($string){
$string = explode ('.', $string);
$count = count ($string);
for ($i = 0; $i < $count; $i++){
$string[$i] = ucfirst (trim ($string[$i]));
if ($i > 0){
$string[$i] = '&nbsp;&nbsp;' . $string[$i];
}
}
$string = implode ('.', $string);
return $string;
}

Northie (2006-09-05 04:39:47)

Sentence Case:

<?php

function SentenceCase($str) {
    
$sentences explode(". ",$str);
    for(
$i=0;$i<count($sentences);$i++) {
        
$sentences[$i][0] = strtoupper($sentences[$i][0]);
    }

    return 
implode(". ",$sentences);
}

?>

(2006-07-27 02:31:37)

lcfirst - In case you need to get the original string back after a ucfirst.
function lcfirst( $str ) {
$str[0] = strtolower($str[0]);
return $str;
}

Markus Ernst (2006-03-31 00:34:22)

A combination of the below functions to enable ucfirst for multibyte strings in a shared hosting environment (where you can not always count on mbstring to be installed):

<?php
function my_mb_ucfirst($str$e='utf-8') {
    if (
function_exists('mb_strtoupper')) {
        
$fc mb_strtoupper(mb_substr($str01$e), $e); 
        return 
$fc.mb_substr($str1mb_strlen($str$e), $e);
    }
    else { 
        
$str utf8_decode($str);
        
$str[0] = strtr($str[0],
            
"abcdefgh?ijklmnopqrstuvwxyz".
            
"\x9C\x9A\xE0\xE1\xE2\xE3".
            
"\xE4\xE5\xE6\xE7\xE8\xE9".
            
"\xEA\xEB\xEC\xED\xEE\xEF".
            
"\xF0\xF1\xF2\xF3\xF4\xF5".
            
"\xF6\xF8\xF9\xFA\xFB\xFC".
            
"\xFE\xFF",
            
"ABCDEFGH?IJKLMNOPQRSTUVWXYZ".
            
"\x8C\x8A\xC0\xC1\xC2\xC3\xC4".
            
"\xC5\xC6\xC7\xC8\xC9\xCA\xCB".
            
"\xCC\xCD\xCE\xCF\xD0\xD1\xD2".
            
"\xD3\xD4\xD5\xD6\xD8\xD9\xDA".
            
"\xDB\xDC\xDE\x9F");
        return 
utf8_encode($str);
    }
}
?>

Bartuc (2006-02-26 17:28:39)

Here is the fixed function for Turkish alphabet..

<?php

function uc_first($str){
   
$str[0] = strtr($str
   
"abcdefgh?ijklmnopqrstuvwxyz".
   
"\x9C\x9A\xE0\xE1\xE2\xE3".
   
"\xE4\xE5\xE6\xE7\xE8\xE9".
   
"\xEA\xEB\xEC\xED\xEE\xEF".
   
"\xF0\xF1\xF2\xF3\xF4\xF5".
   
"\xF6\xF8\xF9\xFA\xFB\xFC".
   
"\xFE\xFF"
   
"ABCDEFGHI?JKLMNOPQRSTUVWXYZ".
   
"\x8C\x8A\xC0\xC1\xC2\xC3\xC4".
   
"\xC5\xC6\xC7\xC8\xC9\xCA\xCB".
   
"\xCC\xCD\xCE\xCF\xD0\xD1\xD2".
   
"\xD3\xD4\xD5\xD6\xD8\xD9\xDA".
   
"\xDB\xDC\xDE\x9F");
   return 
$str;
}

?>

Markus Ernst (2006-01-12 06:39:13)

plemieux' function did not work for me without passing the encoding to every single mb function (despite ini_set('default_charset', 'utf-8') at the top of the script). This is the example that works in my application (PHP 4.3):

<?php
function my_mb_ucfirst($str$e='utf-8') {
    
$fc mb_strtoupper(mb_substr($str01$e), $e); 
    return 
$fc.mb_substr($str1mb_strlen($str$e), $e);
}
?>

plemieux (2005-09-29 11:05:31)

Simple multi-bytes ucfirst():

<?php
function my_mb_ucfirst($str) {
    
$fc mb_strtoupper(mb_substr($str01));
    return 
$fc.mb_substr($str1);
}
?>

info [at] spwdesign [dot] com (2005-06-23 00:48:44)

This is a simple code to get all the 'bad words', stored in a database, out of the text. You could use str_ireplace but since that's installed on PHP5 only, this works as well. It strtolowers the text first then places capitals with ucfirst() where it thinks a capital should be placed, at a new sentence. The previous sentence is ended by '. ' then.

<?php
function filter($text){
    
$filters=mysql_query("SELECT word,result FROM filter");
    while(
$filter=mysql_fetch_array($filters)){
        
$text=str_replace($filter[word],$filter[result],strtolower($text));
        
$parts=explode(". ",$text);
        for(
$i=0;$i<count($parts);$i++){
            
$parts[$i]=ucfirst($parts[$i]);
        }
        
$text=implode(". ",$parts);
    }
    return 
$text;
}
?>

(2005-03-12 17:11:27)

Ah, the last code were spoiled, here is the fixed one:

<?php

function uc_first($str){
    
$str[0] = strtr($str
    
"abcdefghijklmnopqrstuvwxyz".
    
"\x9C\x9A\xE0\xE1\xE2\xE3".
    
"\xE4\xE5\xE6\xE7\xE8\xE9".
    
"\xEA\xEB\xEC\xED\xEE\xEF".
    
"\xF0\xF1\xF2\xF3\xF4\xF5".
    
"\xF6\xF8\xF9\xFA\xFB\xFC".
    
"\xFD\xFE\xFF"
    
"ABCDEFGHIJKLMNOPQRSTUVWXYZ".
    
"\x8C\x8A\xC0\xC1\xC2\xC3\xC4".
    
"\xC5\xC6\xC7\xC8\xC9\xCA\xCB".
    
"\xCC\xCD\xCE\xCF\xD0\xD1\xD2".
    
"\xD3\xD4\xD5\xD6\xD8\xD9\xDA".
    
"\xDB\xDC\xDD\xDE\x9F");
    return 
$str;
}

?>

So, this function changes also other letters into uppercase, ucfirst() does only change: a-z to: A-Z.

(2004-12-25 10:46:44)

steven at tux dot appstate dot edu (2004-06-21 12:14:01)

Note: the return for this function changed in versions 4.3 when a string is passed of length 0. In <4.2 false is returned and in >4.3 a string of length 0 is returned.
Example:
$name = ucfirst("");
var_dump($name);
$name = ucfirst("owen");
var_dump($name);
Results for <4.2:
bool(false) string(4) "Owen"
Results for >4.3:
string(0) "" string(4) "Owen"

Ami Hughes (ami at mistress dot name) (2004-04-07 20:34:49)

In the event you sort of need multiple delimiters to apply the same action to, you can preg_replace this "second delimiter" enveloping it with your actual delimiter.
 
A for instance, would be if you wanted to use something like Lee's FormatName function in an input box designed for their full name as this script was only designed to check the last name as if it were the entire string.  The problem is that you still want support for double-barreled names and you still want to be able to support the possibility that if the second part of the double-barreled name starts with "mc", that it will still be formatted correctly.

This example does a preg_replace that surrounds the separator with your actual delimiter.  This is just a really quick alternative to writing some bigger fancier blah-blah function.  If there's a shorter, simpler way to do it, feel free to inform me.  (Emphasis on shorter and simpler because that was the whole point of this.) :D

Here's the example.  I've removed Lee's comments as not to confuse them with my own.

<?php

   
function FormatName($name=NULL)
   {
       if (empty(
$name))
           return 
false;

       
$name strtolower($name);
       
$name preg_replace("[\-]"" - ",$name); // Surround hyphens with our delimiter so our strncmp is accurate
       
if (preg_match("/^[a-z]{2,}$/i",$name))  // Simple preg_match if statement
       
{
           
           
$names_array explode(' ',$name);  // Set the delimiter as a space.
    
           
for ($i 0$i count($names_array); $i++)
           {
               if (
strncmp($names_array[$i],'mc',2) == || ereg('^[oO]\'[a-zA-Z]',$names_array[$i]))
               {
                   
$names_array[$i][2] = strtoupper($names_array[$i][2]);
               }
               
$names_array[$i] = ucfirst($names_array[$i]);
               
           }
    
           
$name implode(' ',$names_array);
           
$name preg_replace("[ \- ]""-",$name); //  Remove the extra instances of our delimiter
           
return ucwords($name);
           
       }
   }

?>

lazaro_tolentino at hotmail dot com (2004-04-01 13:16:06)

Lee Benson (2004-03-05 14:37:18)

Here's a function I threw together when needing to validate name entries (both first name and last name).

This allows simple formatting for names prefixed with "Mc" (like McDonald, McCulloch, etc) and names prefixed with O (like O'Reilly, O'Conner, etc)..

It also allows double-barrelled names to be formatted correctly, in the Smith-Jones way.

Here's the function...

<?php

    
function FormatName($name=NULL) {
        
        
/* Formats a first or last name, and returns the formatted
        version */
        
        
if (empty($name))
            return 
false;
            
        
// Initially set the string to lower, to work on it
        
$name strtolower($name);
            
        
// Run through and uppercase any multi-barrelled names

        
$names_array explode('-',$name);

        for (
$i 0$i count($names_array); $i++) {
            
            
// "McDonald", "O'Conner"..
            
if (strncmp($names_array[$i],'mc',2) == || ereg('^[oO]\'[a-zA-Z]',$names_array[$i])) {
            
$names_array[$i][2] = strtoupper($names_array[$i][2]);
    
            }
            
            
// Always set the first letter to uppercase, no matter what
            
$names_array[$i] = ucfirst($names_array[$i]);
            
        }

        
// Piece the names back together
        
$name implode('-',$names_array);

        
// Return upper-casing on all missed (but required) elements of the $name var
        
return ucwords($name);
        
    }

?>

If you have any other "rules" to follow for international/foreign naming rules, you can add them to the foreach loop, and it should still follow all of the other rules.

It's a quick fix, but it seems to do the job nicely.

Examples...

<?php

$name 
"o'cONNER-MCdOnAld";
echo 
FormatName($name);

?>

Returns: O'Conner-McDonald

(2004-03-04 09:46:43)

bkimble at ebaseweb dot com (2003-06-08 17:02:12)

Here is a handy function that makes the first letter of everything in a sentence upercase. I used it to deal with titles of events posted on my website ... I've added exceptions for uppercase words and lowercase words so roman numeral "IV" doesn't get printed as "iv" and words like "a" and "the" and "of" stay lowercase.
function RemoveShouting($string)
{
$lower_exceptions = array(
"to" => "1", "a" => "1", "the" => "1", "of" => "1"
);

$higher_exceptions = array(
"I" => "1", "II" => "1", "III" => "1", "IV" => "1",
"V" => "1", "VI" => "1", "VII" => "1", "VIII" => "1",
"XI" => "1", "X" => "1"
);
$words = split(" ", $string);
$newwords = array();

foreach ($words as $word)
{
if (!$higher_exceptions[$word])
$word = strtolower($word);
if (!$lower_exceptions[$word])
$word = ucfirst($word);
array_push($newwords, $word);

}

return join(" ", $newwords);
}

易百教程