fork download
  1. <?php
  2. if (!@$a) {
  3. $a = 1;
  4. } else {
  5. $a = 2;
  6. }
  7. $a = null;
  8. echo $a; //undefined
  9.  
  10. if (!$a) {
  11. $a = 1;
  12. } else {
  13. $a = 2;
  14. }
  15.  
  16. echo $a; //1
Success #stdin #stdout 0.01s 24408KB
stdin
Standard input is empty
stdout
1