Beispiel #1
0
 /**
  * &getInstance
  * 获取一个FConfig类的实例
  *
  * @return object
  */
 public static function &getInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new FConfig();
     }
     return self::$_instance;
 }