Skip to content

Instantly share code, notes, and snippets.

@Foxy79
Created February 24, 2016 11:27
Show Gist options
  • Save Foxy79/409fe2335d653c3a0066 to your computer and use it in GitHub Desktop.
Save Foxy79/409fe2335d653c3a0066 to your computer and use it in GitHub Desktop.
<?php
function ev_mb_ucfirst($str) {
$fc = mb_strtoupper(mb_substr($str, 0, 1));
return $fc.mb_substr($str, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment