mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 20:52:48 +08:00
删除Think/Model/Lite 类
增加db函数用于实例化Db类
This commit is contained in:
10
base.php
10
base.php
@@ -92,6 +92,16 @@ function D($name='',$layer='Model') {
|
||||
return Think\Loader::model($name,$layer);
|
||||
}
|
||||
|
||||
/**
|
||||
* 实例化数据库类
|
||||
* @param array $config 数据库配置参数
|
||||
* @param boolean $lite 是否lite连接
|
||||
* @return object
|
||||
*/
|
||||
function db($config=[],$lite=false) {
|
||||
return Think\Db::instance($config,$lite);
|
||||
}
|
||||
|
||||
/**
|
||||
* 实例化控制器 格式:[模块/]控制器
|
||||
* @param string $name 资源地址
|
||||
|
||||
Reference in New Issue
Block a user