コード例 #1
0
ファイル: ObjectCache.php プロジェクト: xrogaan/taplod
 public static function getInstance()
 {
     if (self::$_instance == null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }