Skip to content

Instantly share code, notes, and snippets.

@feinomenon
Created March 14, 2017 17:22
Show Gist options
  • Save feinomenon/259fc16f94c03271c43f6b9c68be6230 to your computer and use it in GitHub Desktop.
Save feinomenon/259fc16f94c03271c43f6b9c68be6230 to your computer and use it in GitHub Desktop.
[1] > function foo($var) {
[1] *> return !$var;
[1] *> }
// NULL
[2] > $a = 0;
// 0
[3] > $b = '0 + 0';
// '0 + 0'
[4] > $a == $b;
// true
[5] > foo($a) == foo($b);
// false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment