コード例 #1
0
ファイル: conf.class.php プロジェクト: hitoy/domai-ims
 public static function getIns()
 {
     if (self::$obj instanceof self) {
         return self::$obj;
     } else {
         self::$obj = new self();
         return self::$obj;
     }
 }