コード例 #1
0
ファイル: cls_mysql.php プロジェクト: 0xF3ERROR/Home-Control
 /**
  * gibt einen instance vom type mysql zurück
  *
  * @return MySqlDb 
  *
  */
 public static function getInstance()
 {
     if (self::$Instance === null) {
         self::$Instance = new MySqlDb();
     }
     return self::$Instance;
 }