Skip to content

Instantly share code, notes, and snippets.

@maranemil
Forked from goldsky/transformKeys.php
Created May 22, 2022 16:33
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 maranemil/bc4df17946e35faaad17acff9c246617 to your computer and use it in GitHub Desktop.
Save maranemil/bc4df17946e35faaad17acff9c246617 to your computer and use it in GitHub Desktop.
Convert under_score type array's keys to camelCase type array's keys and likewise
<?php
/**
* Convert under_score type array's keys to camelCase type array's keys
* @param array $array array to convert
* @param array $arrayHolder parent array holder for recursive array
* @return array camelCase array
*/
public function camelCaseKeys($array, $arrayHolder = array()) {
$camelCaseArray = !empty($arrayHolder) ? $arrayHolder : array();
foreach ($array as $key => $val) {
$newKey = @explode('_', $key);
array_walk($newKey, create_function('&$v', '$v = ucwords($v);'));
$newKey = @implode('', $newKey);
$newKey{0} = strtolower($newKey{0});
if (!is_array($val)) {
$camelCaseArray[$newKey] = $val;
} else {
$camelCaseArray[$newKey] = $this->camelCaseKeys($val, $camelCaseArray[$newKey]);
}
}
return $camelCaseArray;
}
/**
* Convert camelCase type array's keys to under_score+lowercase type array's keys
* @param array $array array to convert
* @param array $arrayHolder parent array holder for recursive array
* @return array under_score array
*/
public function underscoreKeys($array, $arrayHolder = array()) {
$underscoreArray = !empty($arrayHolder) ? $arrayHolder : array();
foreach ($array as $key => $val) {
$newKey = preg_replace('/[A-Z]/', '_$0', $key);
$newKey = strtolower($newKey);
$newKey = ltrim($newKey, '_');
if (!is_array($val)) {
$underscoreArray[$newKey] = $val;
} else {
$underscoreArray[$newKey] = $this->underscoreKeys($val, $underscoreArray[$newKey]);
}
}
return $underscoreArray;
}
/**
* Convert camelCase type array's values to under_score+lowercase type array's values
* @param mixed $mixed array|string to convert
* @param array $arrayHolder parent array holder for recursive array
* @return mixed under_score array|string
*/
public function underscoreValues($mixed, $arrayHolder = array()) {
$underscoreArray = !empty($arrayHolder) ? $arrayHolder : array();
if (!is_array($mixed)) {
$newVal = preg_replace('/[A-Z]/', '_$0', $mixed);
$newVal = strtolower($newVal);
$newVal = ltrim($newVal, '_');
return $newVal;
} else {
foreach ($mixed as $key => $val) {
$underscoreArray[$key] = $this->underscoreValues($val, $underscoreArray[$key]);
}
return $underscoreArray;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment