Advertisement
Guest User

Untitled

a guest
Feb 6th, 2019
425
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 1 0
  1. function toCamelCase($input) : string
  2. {
  3.     return str_replace(
  4.         ' ',
  5.         '',
  6.         ucwords(
  7.             strtolower(
  8.                 preg_replace('/[^a-zA-Z0-9]+/', ' ', $input)
  9.             )
  10.         )
  11.     );
  12. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement