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; }}
作者使用的是5.0的,我使用的是6.0,在6.0下,ues think\facade\Db; 这样就ok了
快速入门ThinkPHP 5.0 --模型篇
27110 学习 · 100 问题
相似问题