Created
February 12, 2016 13:26
-
-
Save slav123/4c78a1016a580bb1fe32 to your computer and use it in GitHub Desktop.
make assoc for dropdown
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_dropdown(&$input_array, $pkey = 'id', $column = 'name') | |
| { | |
| $keys = array_column($input_array, $pkey); | |
| $input_array = array_combine($keys, array_column($input_array, $column)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment