コード例 #1
0
ファイル: db_connect.php プロジェクト: CSUN-Comp490/TeamUp
 public static function getInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new db_connect();
     }
     return self::$_instance;
 }
コード例 #2
0
 public static function getInstance()
 {
     if (!self::$_instance) {
         // If no instance then make one
         self::$_instance = new self();
     }
     return self::$_instance;
 }