fork download
  1. <?php
  2.  
  3. $P = true;
  4. $Q = true;
  5.  
  6. $cond = ($P xor $Q);
  7.  
  8. echo 'P is '.stringify($P)."\n";
  9. echo 'Q is '.stringify($Q)."\n";
  10. echo 'P xor Q is '.stringify($cond)."\n";
  11.  
  12.  
  13. function stringify($bool)
  14. {
  15. if ($bool) {
  16. return 'true';
  17. }
  18.  
  19. return 'false';
  20. }
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
P is true
Q is true
P xor Q is false