Guest User

Untitled

a guest
Sep 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $done = false;
  4. $last_offset = 0;
  5.  
  6. while(!$done)
  7. {
  8. $last_offset = myTweetFunction($last_offset);
  9. // at some point you set done = true or if you're bounded by a number
  10. // just use a for loop
  11. }
  12. ?>
Add Comment
Please, Sign In to add comment