Skip to content

Instantly share code, notes, and snippets.

@damirm
Last active September 30, 2015 09:55
Show Gist options
  • Save damirm/e7ff84e122882591bee1 to your computer and use it in GitHub Desktop.
Save damirm/e7ff84e122882591bee1 to your computer and use it in GitHub Desktop.
function transpose($matrix) {
array_unshift($matrix, null);
return call_user_func_array('array_map', $matrix);
}
function transpose($matrix) {
return array_map(null, ...$matrix);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment