Skip to content

Instantly share code, notes, and snippets.

@blar
Created December 10, 2013 14:56
Show Gist options
  • Select an option

  • Save blar/7891941 to your computer and use it in GitHub Desktop.

Select an option

Save blar/7891941 to your computer and use it in GitHub Desktop.
array_key_rename
<?php
function array_key_rename($array, $old, $new) {
$array[$new] = $array[$old];
unset($array[$old]);
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment