Skip to content

Instantly share code, notes, and snippets.

@jimrubenstein
Forked from kevtainer/gist:0ddcdf44982a8d16642d
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimrubenstein/3cdf814369fcea045e48 to your computer and use it in GitHub Desktop.
Save jimrubenstein/3cdf814369fcea045e48 to your computer and use it in GitHub Desktop.
$generateKpiValue = function($metric_info) {
$words = explode('_', $metric_info['uid']);
array_shift($words);
return implode('', array_map('ucfirst', $words));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment