Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $i = 10;
  2.  
  3. while(--$i){
  4. echo $i.PHP_EOL;
  5. sleep(1);
  6. include 'inc.php';
  7. }
  8.  
  9. echo "includedn";
  10.  
  11. echo "asdfn";
  12.  
  13. 9
  14. included
  15. 8
  16. included
  17. 7
  18. included
  19. 6
  20. asdf
  21. 5
  22. asdf
  23. 4
  24. asdf
  25. 3
  26. asdf
  27. 2
  28. asdf
  29. 1
  30. asdf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement