Skip to content

Instantly share code, notes, and snippets.

@rela589n
Last active June 10, 2023 07:34
Show Gist options
  • Save rela589n/166c6d32c793daa8627aecf06d57be37 to your computer and use it in GitHub Desktop.
Save rela589n/166c6d32c793daa8627aecf06d57be37 to your computer and use it in GitHub Desktop.
Transpose Matrix
function transposeMatrix(array $matrix): array
{
if (1 === count($matrix)) {
return array_chunk(reset($matrix), 1);
}
return array_map(null, ...$matrix);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment