tp5连接多个数据库

config.php中中定义db2:
tp5连接多个数据库_第1张图片
控制器中打印一下:


namespace app\index\controller;
use think\Controller;
use think\Db;
use think\Request;
class Index extends Controller
{
    public function index()
    {
    	//连接默认的数据库
    	$db1=Db::name('users')
    		->select();

    	//连接定义的第二个数据库
        $db2=Db::connect('db2');
        $result=$db2->name('ceshi')->select();
        print_r($result);die;
        return view('index');
    }
}

tp5连接多个数据库_第2张图片

你可能感兴趣的:(Thinkphp)