Você precisa adicionar o campo _id em $location.And _id deve incluir id.Example:
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);
}
Minha recomendação:adicione upsert em findAndModify
Funcionará para você:
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;
}
}
Em um projeto real, você não precisa de todo o tempo para recriar a conexão
Você pode criar o MongoDatabase (este padrão singelton)
class MongoDatabase{
private function __construct(){}
public static function getInstance(){...} // return MongoClient
}
e chame o método need
MongoDatabase::getInstance()->selectCollection('counters')->findAndModify(...)