Skip to content

Instantly share code, notes, and snippets.

@jacquesbh
Created August 7, 2012 08:22
Show Gist options
  • Save jacquesbh/3283155 to your computer and use it in GitHub Desktop.
Save jacquesbh/3283155 to your computer and use it in GitHub Desktop.
One char upper, One char lower
echo trim(preg_replace_callback('/(.)(.)/isU', function ($matches) {
return strtoupper($matches[1]) . strtolower($matches[2]);
}, $txt));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment