admin管理员组文章数量:1342718
How can I view and "do" things with a MongoDB collection after find()
ing my results? I.e.:
<?php
$cursor = $collection->find();
json_encode($cursor);
//OR
print_r($cursor);
?>
etc. No matter what I do i get nothing, but if I loop it i can get the data out one by one i can get the data out (of course) but the issue is, I want to do things with it like encode the returned array as a whole to a JSON object for doing AJAX / JS stuff.
So, how could I do this?
How can I view and "do" things with a MongoDB collection after find()
ing my results? I.e.:
<?php
$cursor = $collection->find();
json_encode($cursor);
//OR
print_r($cursor);
?>
etc. No matter what I do i get nothing, but if I loop it i can get the data out one by one i can get the data out (of course) but the issue is, I want to do things with it like encode the returned array as a whole to a JSON object for doing AJAX / JS stuff.
So, how could I do this?
Share Improve this question edited Sep 22, 2017 at 17:57 CommunityBot 11 silver badge asked Mar 19, 2011 at 21:38 Oscar GodsonOscar Godson 32.8k42 gold badges125 silver badges206 bronze badges3 Answers
Reset to default 5You are trying to do the print_r on a MongoCursor, not a PHP array (which won't work.)
http://php/manual/en/class.mongocursor.php
You'll need to either convert the cursor to a PHP array ...
<?
// Connect to Mongo and set DB and Collection
$mongo = new Mongo();
$db = $mongo->twitter;
$collection = $db->tweets;
// Return a cursor of tweets from MongoDB
$cursor = $collection->find();
// Convert cursor to an array
$array = iterator_to_array($cursor);
// Loop and print out tweets ...
foreach ($array as $value) {
echo "<p>" . $value[text];
echo " @ <b><i>" . $value[created_at] . "</i></b>";
}
?>
Or, use findOne() instead which will not return a MongoCursor ... so if you just want to get one document and return it as JSON to your application you can do it pretty simply like so (this shows how to do JSON and print_r as you asked) ...
See these articles for more help ...
http://learnmongo./posts/mongodb-php-install-and-connect/
http://learnmongo./posts/mongodb-php-twitter-part-1/
<?php
$connection = new Mongo();
$db = $connection->test;
$collection = $db->phptest;
$obj = $collection->findOne();
echo "<h1>Hello " . $obj["hello"] . "!</h1>";
echo "<h2>Show result as an array:</h2>";
echo "<pre>";
print_r($obj);
echo "</pre>";
echo "<h2>Show result as JSON:</h2>";
echo "<pre>";
echo json_encode($obj);
echo "</pre>";
?>
The standard is is to loop over the results, with foreach, or while.
There is also (as part of PHP versions > 5.1), iterator_to_array, which can be used with the Mongo cursors. As the note on Mongo::find this will load all the results into memory, which could exceed memory limits and crash the script - so be aware of how much data is expected.
$cursor = $collection->find();
$array = iterator_to_array($cursor);.
Using the shell you can query Mongo in a way that it will output the result as an array.
db.products.find().toArray()
The above will print the collection "products" formated as an array. I haven't tested but you may be able to get the output with PHP and do a print. Just a thought.
本文标签: javascriptHow to printr in PHP a MongoDB CollectionStack Overflow
版权声明:本文标题:javascript - How to print_r in PHP a MongoDB Collection? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743710756a2525889.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论