tp5 0 mysql TP5 0資料庫相關操作

2021-10-17 18:18:21 字數 898 閱讀 9677

2、如何連線資料庫

配置檔案定義

配置檔案:database.php

return [

// 資料庫型別

'type'            => 'mysql',

// 伺服器位址

'hostname'        => '127.0.0.1',

// 資料庫名

'database'        => 'tp',

// 使用者名稱

'username'        => 'root',

// 密碼

'password'        => root'',

// 埠

'hostport'        => '3306',

// 資料庫表字首

'prefix'          => '',

方法配置

使用陣列

db::connect([

// 資料庫型別

'type'        => 'mysql',

// 伺服器位址

'hostname'    => '127.0.0.1',

// 資料庫名

'database'    => 'thinkphp',

// 資料庫使用者名稱

'username'    => 'root',

// 資料庫密碼

'password'    => '',

// 資料庫連線埠

'hostport'    => ''

使用字串:

db::connect('mysql:');

模型類定義

建立資料模型

命令列建立

手動建立

使用:dump($mr_user_admin::all());

tp5 0增刪改查

模型層裡 usertell this where tellphone data tellphone find return usertell 獲取所有會員 public function getallmem 列表分頁 public function getpagedata pagesize 單查 p...

tp5 0的學習筆記

extend 擴充套件類庫目錄 可定義 public 對外訪問目錄 runtime 執行時目錄 可定義 vendor 第三方類庫目錄 composer thinkphp 框架核心目錄 build.php 自動生成定義檔案 參考 composer.json composer定義檔案 license.t...

TP5 0 excel 匯入匯出

介紹下excel匯入匯出 引第三方的phpexcel類庫放到 thinkphp library vendor demo下,自己建的資料夾demo 再將excel.class放到thinkphp library org class下,自己建的資料夾class 控制器 namespace admin c...