fork download
  1. <?php
  2.  
  3. $a =[]==0;
  4.  
  5. $c =[];
  6.  
  7. $b =[]== $c;
  8.  
  9. $d =[0]== $c;
  10.  
  11. $e =(0)== $c;
  12.  
  13. $f =(0)==0;
  14.  
Success #stdin #stdout 0.02s 23568KB
stdin
Standard input is empty
stdout
bool(false)
bool(true)
bool(false)
bool(false)
bool(true)