Skip to content

Instantly share code, notes, and snippets.

@krisives
Created April 12, 2013 17:31
Show Gist options
  • Save krisives/5373691 to your computer and use it in GitHub Desktop.
Save krisives/5373691 to your computer and use it in GitHub Desktop.
php >
php >
php > $x = null;
php > $y = 100;
php > $min = min($x, $y);
php > var_dump($min);
NULL
php > $max = max($x, $y);
php > var_dump($max);
int(100)
php >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment