Skip to content

Instantly share code, notes, and snippets.

@nwalke
Created October 29, 2015 15:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nwalke/97e74b8d7bcc6c1c0f93 to your computer and use it in GitHub Desktop.
Save nwalke/97e74b8d7bcc6c1c0f93 to your computer and use it in GitHub Desktop.
php > echo (0 == null ? "Yes" : "No");
Yes
php > echo (1 > null ? "Yes" : "No");
Yes
php > echo (0 > null ? "Yes" : "No");
No
php > echo (-1 > null ? "Yes" : "No");
Yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment