Skip to content

Instantly share code, notes, and snippets.

View arobinski's full-sized avatar

Arkadiusz Robiński arobinski

  • Poznań, Poland
View GitHub Profile
@arobinski
arobinski / gist:27419c8f309d74a8d0cb
Last active September 6, 2022 09:32
Change CamelCaseString to underscore_style_string
/**
* Changes a CamelCaseString into a string_with_underscores.
*
* @param string $string CamelCase string
* @return string string_with_underscores
*/
public static function camelCaseToUnderscoreStyle($string)
{
return preg_replace_callback(
'|[A-Z]|',