fork download
  1. <?php
  2.  
  3. var_dump('0' == FALSE); // bool(true)
  4. var_dump(0 == FALSE); // bool(true)
Success #stdin #stdout 0.03s 52432KB
stdin
Standard input is empty
stdout
bool(true)
bool(true)