mongodbにphpから接続できるか確認する簡易スクリプト mongodb
<pre class= brush:php >// DB接続
$manager = new MongoDB¥Driver¥Manager( mongodb://localhost:27017 );
// Insert
$bulk = new MongoDB¥Driver¥BulkWrite;
$bulk->insert([ title => mdb接続てすと contents => mongodbにphpから接続できるか確認する簡易スクリプト DB名が「sample_db」RDBのtableになるcollectionが「sample_collection」 ]);
$manager->executeBulkWrite( sample_db.sample_collection $bulk);
// Select
$filter = [];
$options = [
projection => [ _id => 0]
sort => [ _id => -1]
];
$query = new MongoDB¥Driver¥Query($filter $options);
$cursor = $manager->executeQuery( sample_db.sample_collection $query);
// Select 結果表示
foreach ($cursor as $document) {
var_dump($document);
}
</pre>