fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5.  
  6. $w = 7;
  7. $x = 5;
  8. $y = true;
  9. $z = false;
  10.  
  11. echo json_encode(($w == 8 && $y == true));
  12. echo "\n";
  13. echo json_encode(($w == 8 || $z == false));
Success #stdin #stdout 0.01s 24332KB
stdin
Standard input is empty
stdout
false
true