Skip to content

Instantly share code, notes, and snippets.

@colindecarlo
Created February 13, 2016 17:20
Show Gist options
  • Save colindecarlo/7942875c8dbef0fb6153 to your computer and use it in GitHub Desktop.
Save colindecarlo/7942875c8dbef0fb6153 to your computer and use it in GitHub Desktop.
<?php
function transpose($matrix) {
return array_reduce(array_keys($matrix[0]), function ($transposed, $column) use ($matrix) {
$transposed[] = array_column($matrix, $column);
return $transposed;
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment