PHP ile bir MongoDB veritabanı oluşturun

0 Cevap php

Bunu yapmak için bulunan tek yoludur:

$mongo->selectDB('new_db')->createCollection('tmp_collection');
$mongo->selectDB('new_db')->dropCollection('tmp_collection');

Doing just $mongo->selectDB('new_db') actually doesn't work. Got any idea?

0 Cevap