Beispiel #1
0
 /**
  * 单例
  *
  * @return Lib\Instance
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }