Skip to content

Instantly share code, notes, and snippets.

@nstone101
Created November 12, 2020 07:43
Show Gist options
  • Save nstone101/483ff5dcc5471d06fff604380e9448fa to your computer and use it in GitHub Desktop.
Save nstone101/483ff5dcc5471d06fff604380e9448fa to your computer and use it in GitHub Desktop.
$array = [
[1, 2, 3, 4],
[1, 2, 3, 4],
[1, 2, 3, 4],
];
function flip($array) {
array_unshift($array, null);
return call_user_func_array('array_map', $array);
}
$result = flip($array);
print_r($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment