Skip to content

Instantly share code, notes, and snippets.

@acodesmith
Last active August 29, 2015 14:10
Show Gist options
  • Save acodesmith/6fc16423777b1539e50e to your computer and use it in GitHub Desktop.
Save acodesmith/6fc16423777b1539e50e to your computer and use it in GitHub Desktop.
Convert a camel case string to a readable string.
<?=ucwords( implode(' ', preg_split('/(?=[A-Z])/',$str) ) ); ?>
@acodesmith
Copy link
Author

'thisIsSuperCool' becomes 'This Is Super Cool'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment