Chưa có chức năng findAndModify. Thay vì findAndModify, bạn sẽ phải chạy một lệnh cơ sở dữ liệu chung để thực hiện việc này:
Lệnh$db->command(
array(
"findandmodify" => "counters",
"query" => array("_id"=> "total"),
"update" => array($inc=> array("total"=> 1)),
)
);
Có một sự cố mở tại https://jira.mongodb.org/browse/PHP-117 để triển khai findAndModify.