Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tayfunerbilen/57b86eebe5e8663ec274f64812dd0647 to your computer and use it in GitHub Desktop.
Save tayfunerbilen/57b86eebe5e8663ec274f64812dd0647 to your computer and use it in GitHub Desktop.
PHP: ucwords() for UTF-8 strings
<?php
if (!function_exists('mb_ucwords'))
{
function mb_ucwords($str)
{
return mb_convert_case($str, MB_CASE_TITLE, "UTF-8");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment