Skip to content

Instantly share code, notes, and snippets.

@arioch1984
Last active August 29, 2015 14:11
Show Gist options
  • Save arioch1984/71841ed6c296675cefb3 to your computer and use it in GitHub Desktop.
Save arioch1984/71841ed6c296675cefb3 to your computer and use it in GitHub Desktop.
max value from a column of associative array
<?php
function array_col(array $a, $x)
{
return array_map(function($a) use ($x) { return $a[$x]; }, $a);
}
$max = max(array_col($menu_items, 'colonna'));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment