示例#1
0
文件: Config.php 项目: lfjaimesb/sic
 public static function Singleton()
 {
     if (self::$Instance == null) {
         $c = __CLASS__;
         self::$Instance = new $c();
     }
     return self::$Instance;
 }