Пример #1
0
 /**
  * 运行数据库
  * 1. 初始化DB类  DAO中调用方法    $this->Dao->Db
  */
 public function run_db()
 {
     if ($this->db == NULL) {
         $this->db = InitPHP::loadclass('DbInit');
         $this->db->init_db('');
     }
     return $this->db;
 }
Пример #2
0
 /**
  * 运行数据库
  * 1. 初始化DB类  DAO中调用方法    $this->dao->db
  */
 public function run_db()
 {
     if ($this->db == NULL) {
         require INITPHP_PATH . "/core/dao/db/db.init.php";
         $this->db = InitPHP::loadclass('dbInit');
         $this->db->init_db('');
     }
     return $this->db;
 }