Skip to content

Instantly share code, notes, and snippets.

@kevtainer
Created June 18, 2014 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kevtainer/0ddcdf44982a8d16642d to your computer and use it in GitHub Desktop.
Save kevtainer/0ddcdf44982a8d16642d to your computer and use it in GitHub Desktop.
$generateKpiValue = function($metric_info) {
// there's a regexp for this, if you know it, it'd probably be faster
$words = explode('_', str_replace('ga_', '', $metric_info['uid']));
foreach($words as &$word) {
$word = ucfirst($word);
}
return join('', $words);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment