私たちはphp mongo extをインストールして、作曲家を設定しました。私のPHPコードでphp 7 mongodb collection insert
https://github.com/alcaeus/mongo-php-adapter
私はこのている:
require_once 'vendor/autoload.php';
$m = new MongoDB\Client("mongodb://host1,host2", array ('replicaSet' => 'host-set-01'));
$document = array(....);
$db->mycollection->insert($document);
をそしてそれは、このエラーを返しました:
PHP Fatal error: Uncaught Error: Call to undefined method MongoDB\Collection::insert()
しかし、アダプタのフォルダの中に私は、そのコレクション内のinsert()
を参照くださいクラスMongo/MongoCollection.php
誰でもmongodb/adapterで作業していますか?
この問題に対して正しい修正を投稿してください。 – Nadeshwaran