示例#1
0
文件: database.php 项目: huang-sh/MVC
 public static function &getSingleton()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
示例#2
0
文件: models.php 项目: huang-sh/MVC
 protected function init_mysql()
 {
     require_once SYS_DB . '/database.php';
     $this->db = Sys_database::getSingleton();
 }