Get column from associative array
<?php function array_col(array $a, $x) { return array_map(function($a) use ($x) { return $a[$x]; }, $a); } ?>