Non-static method think\DbManager::connect() should not be called statically

来源:2-1 数据库的连接操作

thxopen

2019-12-24 15:43

namespace app\controller;use app\BaseController;use think\Db;class Index extends BaseController {	public function index($name = 'Keith', $age = 28) {	// return 'hello ' . $name . ' I\'m ' . $age;		// dump(config("database"));		try {			$res = Db::connect();			// $res = [];			dump($res);		} catch (Exception $e) {			dump($e);			echo "异常了";		}	}	public function hello($name = 'ThinkPHP6') {		return 'hello,' . $name;	}}


写回答 关注

1回答

  • thxopen
    2019-12-24 16:01:33

    作者使用的是5.0的,我使用的是6.0,在6.0下,ues think\facade\Db; 这样就ok了

快速入门ThinkPHP 5.0 --模型篇

Thinkphp5.0已发布多时,想了解thinkphp 5.0的新特性吗?老司机点准时出发

27110 学习 · 100 问题

查看课程

相似问题