fork download
  1. <?php
  2.  
  3. $x = '0lol';
  4.  
  5. echo 'Before: ';
  6.  
  7. if ($x != 0) {
  8. echo '$x != 0' . PHP_EOL;
  9. } else {
  10. echo '$x == 0' . PHP_EOL;
  11. $x = 0;
  12. }
  13.  
  14. echo 'After: ';
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Before: string(4) "0lol"
$x == 0
After: int(0)