如何在php 7中创建集合?

时间:2016-02-15 11:38:27

标签: php mongodb

如何使用mongodb在php 7中创建集合?

我试过了,

$collection = new CreateCollection($sessionid);

但它给了我错误,未找到类CreateCollection

1 个答案:

答案 0 :(得分:-2)

这不是它应该如何工作的。您应该使用函数CreateCollection in the MongoDB class

$mongo = new MongoClient();
$db = new MongoDB($mongo, 'The name of your database');
$db->createCollection("sessionid");