如何使用mongodb在php 7中创建集合?
我试过了,
$collection = new CreateCollection($sessionid);
但它给了我错误,未找到类CreateCollection
答案 0 :(得分:-2)
这不是它应该如何工作的。您应该使用函数CreateCollection in the MongoDB class。
$mongo = new MongoClient();
$db = new MongoDB($mongo, 'The name of your database');
$db->createCollection("sessionid");