Skip to content

Instantly share code, notes, and snippets.

@slav123
Created February 12, 2016 13:26
Show Gist options
  • Select an option

  • Save slav123/4c78a1016a580bb1fe32 to your computer and use it in GitHub Desktop.

Select an option

Save slav123/4c78a1016a580bb1fe32 to your computer and use it in GitHub Desktop.
make assoc for dropdown
<?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