Last active
August 29, 2015 14:28
-
-
Save iolloyd/a0bc029a17b519938d89 to your computer and use it in GitHub Desktop.
[a,b,c,d] => [a => b, c => d]
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
$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