Skip to content

Instantly share code, notes, and snippets.

@pigfly88
Created January 10, 2020 02:33
Show Gist options
  • Save pigfly88/0b56eb688e3fb238481301fbca1b2546 to your computer and use it in GitHub Desktop.
Save pigfly88/0b56eb688e3fb238481301fbca1b2546 to your computer and use it in GitHub Desktop.
// 下划线转驼峰 出自Doctrine Inflector
function camelize($word) {
return lcfirst(str_replace([' ', '_', '-'], '', ucwords($word, ' _-')));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment