コード例 #1
0
ファイル: Cache.php プロジェクト: roblight/wgh-api
 public static function init()
 {
     if (!self::$collection) {
         self::$client = new \MongoClient();
         self::$db = self::$client->{self::dbName};
         self::$collection = self::$db->{self::collectionName};
     }
 }