• 微信
您当前的位置: 首页> PHP> ThinkPHP>

tp6数据库配置及简单的数据查询

作者:Alpha时间:2021-07-16 阅读数:2901 +人阅读

1、数据库配置

应用config/database.php:

image.png

这里的配置调用的为根目录下.env数据库配置信息,如果不存在env数据库配置字段,有对应的默认值,所以我们直接在.env中配置数据库信息即可。

.env文件:

[DATABASE]
TYPE = mysql
HOSTNAME = 127.0.0.1
DATABASE = tp6
USERNAME = root
PASSWORD = *******
HOSTPORT = 3306
CHARSET = utf8
DEBUG = true
PREFIX = mi_


2、查询数据

在tp5中,我们经常使用Db进行查询,首先是引入:use think\Db;但是在tp6中会报错,需要引入的是use think\facade\Db(tp6的门面模式)

namespace app\controller;

use think\facade\Db;
use app\BaseController;

class Data extends BaseController
{
   public function index(){
       $res = Db::table('mi_demo')->where('id',1)->find();

       dump($res);
   }

}

输出:

image.png

另外一种查询数据库的方式:

//通过容器方式来获取数据
$res = app('db')->table('mi_demo')->where('id',1)->find();
dump($res);

效果是一样的

本站所有文章、数据、图片均来自互联网,一切版权均归源网站或源作者所有。

如果侵犯了你的权益请来信告知我们删除。邮箱:595397166@qq.com

标签:

阿尔法

软件开发工程师#全栈工程师

{include file=foot.html}
0.741198s