1// The result of the expression (false || true) is assigned to $e
2// Acts like: ($e = (false || true))
3$e = false || true;
4
5// The constant false is assigned to $f and then true is ignored
6// Acts like: (($f = false) or true)
7$f = false or true;