Created
July 31, 2015 02:28
-
-
Save slav123/7ddef91233d58ac99776 to your computer and use it in GitHub Desktop.
make_assoc from bigger array
This file contains hidden or 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
<?php | |
function make_assoc(&$input_array, $pkey = 'id') | |
{ | |
$keys = array_column($input_array, $pkey); | |
$input_array = array_combine($keys, $input_array); | |
ksort($input_array); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment