Guest User

Untitled

a guest
Aug 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. https://example-foo-bar.com?l=100&o=0 // returns the first 100 items.
  2.  
  3. https://example-foo-bar.com?l=100&o=0
  4.  
  5. https://example-foo-bar.com?l=100&o=99
  6.  
  7. https://example-foo-bar.com?l=100&o=199
  8.  
  9. https://example-foo-bar.com?l=100&o=218 // end of response ?
  10.  
  11. function testLoop(){
  12.  
  13. $limit = 100;
  14.  
  15. $count = getCount();
  16.  
  17. $j = ceil($count/$limit);
  18.  
  19. for ($i = 0; $i < $j; $i++){
  20. $offset = $i*100;
  21. echo 'https://example-foo-bar?limit='.$limit.'&offset='.$offset.'';
  22. }
  23. }
  24.  
  25. testLoop();
Add Comment
Please, Sign In to add comment