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