Skip to content

Instantly share code, notes, and snippets.

@ermand
Created November 5, 2014 11:46
Show Gist options
  • Save ermand/a4bbb7852c1b722809f2 to your computer and use it in GitHub Desktop.
Save ermand/a4bbb7852c1b722809f2 to your computer and use it in GitHub Desktop.
Find min/max in a multidimensional array
<?php
$min = min( array_map("min", $multable) );
$max = max( array_map("max", $multable) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment