I'm trying to get a list of all collections with a query, except site and stat_site
$collections = $db->getCollectionNames(array('name'=> array('$nin' => array('site','stat_site')))); A list of all the collections comes out, and these too. How to exclude them correctly?