Skip to content

Instantly share code, notes, and snippets.

@jamesBan
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save jamesBan/4f3412ad06092a0c1fee to your computer and use it in GitHub Desktop.

Select an option

Save jamesBan/4f3412ad06092a0c1fee to your computer and use it in GitHub Desktop.
检查mongodb collection 是否存在
<?php
$mongo = new MongoClient();
$db = $mongo->dbName;
$collection = $db->collectionName;
$cursor = $collection->find($criteria, array('_id' => 1))->limit(1);
if($coursor->count() == 0){
exit('not exist');
}
exit('exits');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment