示例#1
0
 public static function getInstance()
 {
     if (!self::$obj) {
         self::$obj = new Singleton();
     }
     return self::$obj;
 }