fork download
  1. <?php
  2. $x = mt_rand(1,10);
  3. $y = mt_rand(1,10);
  4.  
  5. function foo(){
  6.  
  7. if($x % $y == 0){
  8.  
  9. echo $x . "/" . $y;
  10.  
  11. }else{
  12.  
  13. foo();
  14.  
  15. }
  16.  
  17. }
  18.  
  19. ?>
Success #stdin #stdout 0s 13112KB
stdin
Standard input is empty
stdout
Standard output is empty