PHP MongoDB - Use of the aggregate command without the cursor option is deprecated. What?

前端 未结 6 734
醉话见心
醉话见心 2020-12-16 20:32

I have updated mongo and now in the log the following error appears: Use of the aggregate command without the cursor option is deprecated

Mo

6条回答
  •  借酒劲吻你
    2020-12-16 21:12

    Replace this :
    $this->db->{$collection}->aggregate($options);

    with below code by adding cursor array.
    $this->db->{$collection}->aggregate($options,array('cursor'=>array('batchSize' => 1)));

提交回复
热议问题