Skip to content

Instantly share code, notes, and snippets.

@amussey
Created December 30, 2013 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amussey/8183444 to your computer and use it in GitHub Desktop.
Save amussey/8183444 to your computer and use it in GitHub Desktop.
<?php
$new_array = array();
for ($i = 0; $i < intval(count($old_array)/2); $i++) {
$new_array[$old_array[2*$i]] = $old_array[2*$i+1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment