fork download
  1. <?php
  2. $c1 =3;
  3. $c2 =0;
  4. $c3 =3;
  5. $c4 =1;
  6. function button_one($count)
  7. {
  8. global $c1, $c2, $c3, $c4;
  9. while($count--)
  10. {
  11. $c3++;
  12. $c4++;
  13. }
  14. if($c1 >= 8){$c1 = (int)($c1/8);}
  15. if($c2 >= 8){$c2 = (int)($c2/8);}
  16. if($c3 >= 8){$c3 = (int)($c3/8);}
  17. if($c4 >= 8){$c4 = (int)($c4/8);}
  18. }
  19.  
  20. function button_two($count)
  21. {
  22. global $c1, $c2, $c3, $c4;
  23. while($count--)
  24. {
  25. $c1++;
  26. $c2++;
  27. $c3++;
  28. }
  29. if($c1 >= 8){$c1 = (int)($c1/8);}
  30. if($c2 >= 8){$c2 = (int)($c2/8);}
  31. if($c3 >= 8){$c3 = (int)($c3/8);}
  32. if($c4 >= 8){$c4 = (int)($c4/8);}
  33. }
  34.  
  35. function button_three($count)
  36. {
  37. global $c1, $c2, $c3, $c4;
  38. while($count--)
  39. {
  40. $c1++;
  41. $c2++;
  42. }
  43. if($c1 >= 8){$c1 = (int)($c1/8);}
  44. if($c2 >= 8){$c2 = (int)($c2/8);}
  45. if($c3 >= 8){$c3 = (int)($c3/8);}
  46. if($c4 >= 8){$c4 = (int)($c4/8);}
  47. }
  48.  
  49. function button_four($count)
  50. {
  51. global $c1, $c2, $c3, $c4;
  52. while($count--)
  53. {
  54. $c2++;
  55. $c3++;
  56. $c4++;
  57. }
  58. if($c1 >= 8){$c1 = (int)($c1/8);}
  59. if($c2 >= 8){$c2 = (int)($c2/8);}
  60. if($c3 >= 8){$c3 = (int)($c3/8);}
  61. if($c4 >= 8){$c4 = (int)($c4/8);}
  62. }
  63. $x, $y, $w, $z;
  64.  
  65. for($x = 0; $x < 100; $x++)
  66. {
  67. button_one($x);
  68. if($c1 == 0 && $c2 == 0 && $c3 == 0 && $c4 == 0)
  69. { echo $x.$y.$z.$w.'<br>'; }
  70. for($y = 0; $y < 100; $y++)
  71. {
  72. button_two($y);
  73. if($c1 == 0 && $c2 == 0 && $c3 == 0 && $c4 == 0)
  74. { echo $x.$y.$z.$w.'<br>'; }
  75. for($z= 0; $z< 100; $z++)
  76. {
  77. button_three($z);
  78. if($c1 == 0 && $c2 == 0 && $c3 == 0 && $c4 == 0)
  79. { echo $x.$y.$z.$w.'<br>'; }
  80. for($w= 0; $w< 100; $w++)
  81. {
  82. button_four($w);
  83. if($c1 == 0 && $c2 == 0 && $c3 == 0 && $c4 == 0)
  84. { echo $x.$y.$z.$w.'<br>'; }
  85. }
  86. }
  87. }
  88. }
  89. ?>
Runtime error #stdin #stdout #stderr 0.03s 24072KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected ',' in /home/5VFRKd/prog.php on line 63