Vous devez ajouter le champ _id dans $location.And _id must you in in id.Exemple :
function add_playbook_history_record($location)
{
$m = new MongoClient("mongodb://10.1.1.111:27017");
$db = $m->testdb;
$collection = $db->testcollection;
$location['_id'] = getNextSequence('playhistid')
$cursor = $collection->insert($location);
}
Ma recommandation :ajoutez upsert dans findAndModify
Cela fonctionnera pour vous :
function getNextSequence($name)
{
$m = new MongoClient("mongodb://10.1.1.111:27017"); // In a real project, you do not need all the time to re-create the connection
$db = $m->testdb;
$collection = $db->counters;
$result = $collection->findAndModify(
['_id' => $name],
['$inc' => ['seq' => 1]],
['seq' => true],
['new' => true, 'upsert' => true]
);
if (isset($result['seq']))
{
return $result['seq'];
}
else
{
return false;
}
}
Dans un projet réel, vous n'avez pas besoin de tout le temps pour recréer la connexion
Vous pouvez créer la MongoDatabase (ce modèle unique)
class MongoDatabase{
private function __construct(){}
public static function getInstance(){...} // return MongoClient
}
et appeler la méthode need
MongoDatabase::getInstance()->selectCollection('counters')->findAndModify(...)