Guest User

Untitled

a guest
Nov 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?
  2. $x = simplexml_load_string('<a><b>test</b></a>'); /* A valid object */
  3. if ($x) { /* true */ }
  4. if (!$x) { /* false */ }
  5. if ($x === false) { /* false */ }
  6. if ($x == false) { /* FUCKING TRUE */ }
  7. ?>
Add Comment
Please, Sign In to add comment