コード例 #1
0
ファイル: LCache.php プロジェクト: firaga/operation
 public static function OInstance()
 {
     if (empty(self::$s_oInstance)) {
         self::$s_oInstance = new self();
     }
     return self::$s_oInstance;
 }
コード例 #2
0
ファイル: LCAgent.php プロジェクト: AllenLyu/ko
 public static function OInstance()
 {
     switch (KO_LC_ENGINE) {
         case 'kproxy':
             return Ko_Data_LCache::OInstance();
         default:
             assert(0);
     }
 }