示例#1
0
 /**
  * Get environment instance (singleton)
  */
 public static function getInstance($entrance = '')
 {
     if (is_null(self::$configmanager)) {
         self::$configmanager = new self($entrance);
     }
     return self::$configmanager;
 }