コード例 #1
0
ファイル: tpl.php プロジェクト: norain2050/xingkang
 /**
  * 实例化
  *
  * @return obj
  */
 public static function getInstance()
 {
     if (self::$instance === null || !self::$instance instanceof Tpl) {
         self::$instance = new Tpl();
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: class_tpl.php プロジェクト: elixvey/mobilebdt
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new Tpl();
     }
     return self::$instance;
 }