Skip to content

Instantly share code, notes, and snippets.

@medeirosinacio
Created June 24, 2021 21:23
Show Gist options
  • Save medeirosinacio/13cc149ca331d8c56549ae1143f4c634 to your computer and use it in GitHub Desktop.
Save medeirosinacio/13cc149ca331d8c56549ae1143f4c634 to your computer and use it in GitHub Desktop.
/**
* Simple multi-bytes ucfirst()
* @param $str
* @return string
*/
function mb_ucfirst_fix($str)
{
return mb_strtoupper(mb_substr($str, 0, 1)) . mb_substr(mb_strtolower($str), 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment