Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. {
  2. "53a6e02221360e263e000000": {
  3. "_id": {
  4. "$id": "53a6e02221360e263e000000"
  5. },
  6. "title": "1"
  7. },
  8. "53a6e02221360e263e000001": {
  9. "_id": {
  10. "$id": "53a6e02221360e263e000001"
  11. },
  12. "title": "2"
  13. }
  14. }
  15.  
  16. [
  17. {
  18. "id": "53a6e02221360e263e000000",
  19. "title": "1"
  20. },
  21. {
  22. "id": "53a6e02221360e263e000001",
  23. "title": "2"
  24. }
  25. ]
  26.  
  27. // MongoDB init before it
  28. $cursor = $mongo->db->collection->find();
  29. // For not large data
  30. $result = iterator_to_array( $cursor );
  31. $json = json_encode($result);
  32. var_dump($json);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement