fork(1) download
  1. <?php
  2.  
  3. $num = 25;
  4.  
  5. echo intdiv($num, 10) . PHP_EOL;
  6. echo $num % 10 . PHP_EOL;
  7.  
  8. $num = -25;
  9.  
  10. echo intdiv($num, 10) . PHP_EOL;
  11. echo $num % 10 . PHP_EOL;
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
2
5
-2
-5