Skip to content

Instantly share code, notes, and snippets.

@sayhicoelho
Created June 22, 2017 00:47
Show Gist options
  • Save sayhicoelho/ee117ec24c2a7cc4e6e09e90903c3fb1 to your computer and use it in GitHub Desktop.
Save sayhicoelho/ee117ec24c2a7cc4e6e09e90903c3fb1 to your computer and use it in GitHub Desktop.
String to CamelCase
<?php
function strtocamel($str, $separator = '_', $replace = true)
{
return str_replace($separator, $replace ? '' : $separator, ucwords($str, $separator));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment