fork download
  1. <?php
  2.  
  3. $slot = array(0, 0, 0);
  4.  
  5. if($slot[0]==$slot[1] && $slot[0] == $slot[2]) {echo "wygrana";}
  6. else echo "game over";
  7.  
  8. $slot = array(0, 1, 2);
  9.  
  10. if($slot[0]==$slot[1] && $slot[0] == $slot[2]) {echo "wygrana";}
  11. else echo "game over";
  12.  
  13. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
wygranagame over