예제 #1
0
파일: Conex.php 프로젝트: kxopa/SlimMidias
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }