Skip to content

Instantly share code, notes, and snippets.

@rococodogs
Created September 13, 2014 14:03
Show Gist options
  • Save rococodogs/0f1bf7eca8d95bf660dd to your computer and use it in GitHub Desktop.
Save rococodogs/0f1bf7eca8d95bf660dd to your computer and use it in GitHub Desktop.
underlines to camelcase
<?php
function underline_to_camel_case($str) {
return lcfirst(implode("", array_map(function($e) {
return ucfirst($e);
}, explode("_", $str))
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment