Skip to content

Instantly share code, notes, and snippets.

@slav123
Created July 31, 2015 02:28
Show Gist options
  • Save slav123/7ddef91233d58ac99776 to your computer and use it in GitHub Desktop.
Save slav123/7ddef91233d58ac99776 to your computer and use it in GitHub Desktop.
make_assoc from bigger array
<?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