コード例 #1
0
ファイル: Db.php プロジェクト: ptarcher/exercise_mvc
 /**
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         $c = __CLASS__;
         self::$instance = $c::factory();
     }
     return self::$instance;
 }