Last active
October 21, 2015 16:44
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function switchKey($array, $newKey) { | |
$newarray = array(); | |
foreach($array as $subarray) { | |
$newarray[$subarray[$newKey]] = $subarray; | |
} | |
unset($array); | |
return $newarray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good!