Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?
  2. protected function camelize($scored)
  3. {
  4. return lcfirst(
  5. implode(
  6. '',
  7. array_map(
  8. 'ucfirst',
  9. array_map(
  10. 'strtolower',
  11. explode('_', $scored)
  12. )
  13. )
  14. )
  15. );
  16. }
Add Comment
Please, Sign In to add comment