Skip to content

Instantly share code, notes, and snippets.

@zgolus
Last active August 29, 2015 14:01
Show Gist options
  • Save zgolus/0e3a64d7b66ec10fcec4 to your computer and use it in GitHub Desktop.
Save zgolus/0e3a64d7b66ec10fcec4 to your computer and use it in GitHub Desktop.
underscore to camel case
<?php
$key = preg_replace_callback(
'#_(\S)#',
function ($matches) {
return strtoupper($matches[1]);
},
$key
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment