예제 #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;
 }