0
我在MongoDB的這個疑問,但我想改變執行這些在PHP 我在MongoDB中也有點新的查詢,可你們好心告訴我 1.如何轉換的MongoDB到PHP
db.Station.group({
"key": {
"OrganizationIdentifier": true
},
"initial": {
"countstar": 0
},
"reduce": function(obj, prev) {
if (true != null) if (true instanceof Array) prev.countstar += true.length;
else prev.countstar++;
},
"cond": {
"OrganizationIdentifier": {
"$in": ["R10BUNKER", "USGS-CA"]
}
}
});
2.
db.Station.find({
"$or": [{
"StateCode": 11
}, {
"CountyCode": 55
}]
}, {
"MonitoringLocationIdentifier": 1,
"MonitoringLocationName": 1,
"MonitoringLocationDescriptionText": 1
});
這裏是在php中開始使用mongo的參考。 http://php.net/manual/en/mongo.tutorial.php – Kamran
請告訴我們你到目前爲止所嘗試過的。 –