Skip to content

Instantly share code, notes, and snippets.

@slifin
Last active February 18, 2016 22:12
Show Gist options
  • Save slifin/d9240befe19ea8286c54 to your computer and use it in GitHub Desktop.
Save slifin/d9240befe19ea8286c54 to your computer and use it in GitHub Desktop.
<?php
function transpose($matrix) {
return (new _)->map(function ($v, $k, $z, $matrix) {
return array_column($matrix, $k);
}, $matrix[0], $matrix);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment