Skip to content

Instantly share code, notes, and snippets.

@pjxiao
Created May 16, 2012 05:37
Show Gist options
  • Save pjxiao/2707772 to your computer and use it in GitHub Desktop.
Save pjxiao/2707772 to your computer and use it in GitHub Desktop.
Covert CamelCase string to snake_case. / キャメルケースをスネークケースに変換する。
<?
/**
* Covert CamelCase string to snake_case
* キャメルケースの文字列をスネークケース (アンダースコア区切り)文字列に変換します。
* @param string CamelCase
* @return string snake_case
*/
function camelToSnake($str) {
return strtolower(preg_replace('/\B([A-Z]+)/', '_\1', $str));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment