Skip to content

Instantly share code, notes, and snippets.

@laurentsab
Last active June 9, 2017 07:41
Show Gist options
  • Save laurentsab/600d89968f57376e887b30848d76736a to your computer and use it in GitHub Desktop.
Save laurentsab/600d89968f57376e887b30848d76736a to your computer and use it in GitHub Desktop.
Manipulate keys values in foreach
<?php
/**
* @param array $array
*
* @return array
*/
protected function translate($array)
{
$filtersChoicesTrans = [];
foreach ($array as $key => $value) {
$keyToLower = strtolower($key);
$filtersChoicesTrans["monolog.event.{$keyToLower}"] = $value;
}
return $filtersChoicesTrans;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment