0
PHPのMongoDBから_idフィールドを除外しようとしています。result.belowは私のPHPスクリプトです。スクリプトから_idを出力から除外することができます。PHPの結果mongodb _idフィールドを除外する方法
<?php
try
{
$connection = new Mongo('mongodb://user:[email protected]:xxxxx/stats');
$database = $connection->selectDB('stats');
$collection = $database->selectCollection('stat');
}
catch(MongoConnectionException $e)
{
die("Failed to connect to database ".$e->getMessage());
}
$cursor = $collection->find();
echo json_encode(iterator_to_array($cursor));
?>
後
Worked.Thankそんなにそれはです。 –
問題はありません。あなたは答えを受け入れることができるので、ポイントを得ることができますか(彼らが意味するものは分かりません)。乾杯... –