Add ucfirst UTF8
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3601 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
10
convert.php
10
convert.php
@@ -46,4 +46,14 @@ class convert
|
||||
}
|
||||
return $date->format ($outputFormat);
|
||||
}
|
||||
|
||||
/** Convert the first char to capital and the rest of the sentence in
|
||||
* lowercase (like ucfirst, but UTF8 compliant
|
||||
* @param string $str The string to convert
|
||||
*/
|
||||
public static function ucfirst ($str)
|
||||
{
|
||||
$a = mb_strtoupper (mb_substr ($str, 0, 1, 'UTF-8'), 'UTF-8');
|
||||
return $a . mb_substr ($str, 1, null, 'UTF-8');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user