fork download
  1. <?php
  2.  
  3. $a = -5;
  4. $b = 4;
  5.  
  6. $c = $b < abs($a);
  7. $d = $b < $a;
  8. echo (string)$c;
  9. echo (string)$d;
Success #stdin #stdout 0.02s 26080KB
stdin
Standard input is empty
stdout
1