Skip to content

Instantly share code, notes, and snippets.

@troelskn
Forked from agiliq/gist:147899
Created July 16, 2009 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save troelskn/148380 to your computer and use it in GitHub Desktop.
Save troelskn/148380 to your computer and use it in GitHub Desktop.
phpsh (c)2006 by Charlie Cheever and Dan Corson and Facebook, Inc.
type 'h' or 'help' to see instructions & features
New Feature: You can use the -c option to turn off coloring
php> var_dump(null > 10);
bool(false)
php> var_dump(null < 10);
bool(true)
php> var_dump(null == 10);
bool(false)
php> var_dump(null == null);
bool(true)
php>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment