Skip to content

Instantly share code, notes, and snippets.

@resmall
Last active October 21, 2015 16:44
Show Gist options
  • Save resmall/0614dcb18332a5f81edf to your computer and use it in GitHub Desktop.
Save resmall/0614dcb18332a5f81edf to your computer and use it in GitHub Desktop.
In an array of arrays, switches the key for a sub-array element value
function switchKey($array, $newKey) {
$newarray = array();
foreach($array as $subarray) {
$newarray[$subarray[$newKey]] = $subarray;
}
unset($array);
return $newarray;
}
@Al-kirfy
Copy link

Good!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment