ホームページ > 記事 > PHPフレームワーク > thinkphp5 をデータベースに接続する方法
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 中国語 Web サイトの他の関連記事を参照してください。