The MB_CASE_TITLE flag does not result in true title case but simply upper-cases each word in the title and changes all others to lowercase.Example:$string = "Mrs. Frisby and the Rats of NIMH";echo mb_convert_case($string, MB_CASE_TITLE);Result:Mrs. Frisby And The Rats Of Nimh