📄 dbiw.inc
字号:
<?phpclass dbiw { private $dbh; private $conf; function getDBH () { $db_conf = $this->$conf->get("db"); $dbType = $db_conf["type"]; include($dbType."_conn.inc"); } function __construct () { $this->$conf = Conf::instance(); $this->getDBH(); $this->$dbh = new db_handle(); } function dbExec ($sql) { return $this->$dbh->sel($sql); } function dbSel ($sql) { return $this->$dbh->sel($sql); } function dbIns ($sql) { return $this->$dbh->ins($sql); }}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -