14 lines
297 B
PHP
Executable File
14 lines
297 B
PHP
Executable File
<?php
|
|
|
|
use think\Db;
|
|
|
|
// 增加一个新的table助手函数
|
|
function table($table, $config = []) {
|
|
return \think\Db::connect($config)->setTable($table);
|
|
}
|
|
|
|
// 替换已有的db助手函数
|
|
function db($name, $config = []) {
|
|
return \think\Db::connect($config)->name($name);
|
|
}
|