Exemple #1
0
 public static function init()
 {
     if (null === self::$responseInstance) {
         parent::init();
         // 默认禁止缓存
         self::setCache(0);
     }
     if (null === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }