Skip to content

Instantly share code, notes, and snippets.

@shengjie
Last active September 11, 2015 12:58
Show Gist options
  • Save shengjie/8c264449e020481d442b to your computer and use it in GitHub Desktop.
Save shengjie/8c264449e020481d442b to your computer and use it in GitHub Desktop.
Simple helper function to convert camelCase <=> snakeCase
<?php
class StringCaseUtils
{
public static function toSnakeCase($camelCase)
{
return strtolower(preg_replace('/([A-Z])/', '_$1', lcfirst($camelCase)));
}
public static function toCamelCase($snakeCase)
{
return implode('', array_map('ucfirst', explode("_", $snakeCase)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment