Skip to content

Instantly share code, notes, and snippets.

@iolloyd
Last active August 29, 2015 14:28
Show Gist options
  • Save iolloyd/a0bc029a17b519938d89 to your computer and use it in GitHub Desktop.
Save iolloyd/a0bc029a17b519938d89 to your computer and use it in GitHub Desktop.
[a,b,c,d] => [a => b, c => d]
$out = [];
while($array && $out[array_shift($array)] = array_shift($array));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment