Add ucfirst UTF8

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3601 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2017-05-05 18:35:14 +00:00
parent 141b647931
commit 19a60471bc

View File

@@ -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');
}
}