1、設定檔目錄 tp5\application\database.php
透過設定檔來連接。也可以透過方法連結。
在控制器裡方法連結資料庫;查詢時寫法和使用系統的DB類別方法略有差異
// 使用方法配置数据库连接 public function data1 () { $DB = Db::connect([ // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'user', // 用户名 'username' => 'root', // 密码 'password' => 'root', // 端口 'hostport' => '3306', ]); // dump($DB); // 查询数据,,,,和使用系统的DB类方法略有差异 $data = $DB -> table("uu") -> select(); dump($data); }
(建議學習教學:thinkphp教學)
2、基本使用、增刪改查
控制器使用設定檔連接資料庫
控制器下檔案(tp5\application\index\controller\Index.php )寫入
<?php namespace app\index\controller; use think\Db; use think\Controller; class Index extends Controller { public function index() { // return '上课来'; return $this -> fetch(); } // 使用配置文件连接数据库 public function data() { // 实例化数据库系统类 $DB = new Db; // 查询数据,表名为uu的所有数据 $data = $DB::table("uu") -> select(); // 使用sql语句 //$data = $DB::query("select * from uu"); dump($data); } }
3、將資料渲染範本頁
<?php namespace app\index\controller; use think\Db; use think\Controller; // 使用model连接数据库要引入moadel use think\Model; class Index extends Controller { public function index() { // return 's'; $this -> data(); return $this -> fetch(); } // 使用系统配置文件连接数据库 public function data() { // 实例化数据库系统类 $DB = new Db; // 查询数据 $data = $DB::table("uu") -> select(); $this -> assign("user",$data); // dump($data); } }
4、範本頁即可引用渲染資料
tp5\application\index\view\index\index .html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>s</title> </head> <body> <div> s</div> {volist name="user" id="vo"} <a href="">{$vo.name}</a> {/volist} </body> </html>
更多程式相關內容,請追蹤php中文網程式入門欄位!
以上是thinkphp5如何連接資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!