Skip to content

Instantly share code, notes, and snippets.

@arioch1984
Created December 12, 2014 14:30
Show Gist options
  • Save arioch1984/31e9c31e1d609ddf7ca1 to your computer and use it in GitHub Desktop.
Save arioch1984/31e9c31e1d609ddf7ca1 to your computer and use it in GitHub Desktop.
Get column from associative array
<?php
function array_col(array $a, $x)
{
return array_map(function($a) use ($x) { return $a[$x]; }, $a);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment