Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // COLLECTION NAMES:
  2. - user_1_list_1
  3. - user_1_list_2
  4. - user_1_list_3
  5. ...
  6. - user_1_list_55
  7.  
  8. {
  9. first_name
  10. last_name
  11. phone
  12. }
  13.  
  14. $collection_name = "user_1_list_1";
  15. $collection = $this->db->{$collection_name};
  16.  
  17. $query = [];
  18.  
  19. $cursor = $collection->find(
  20. $query,
  21. [
  22. 'limit' => 10,
  23. 'skip' => 0,
  24. 'sort' => ['first_name' => 1],
  25. ]
  26. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement