tp5 thinkPHP5 框架鏈結資料庫的方法

2022-10-10 12:00:17 字數 976 閱讀 4691

可以通過配置檔案或直接方法鏈結資料庫

一、通過配置檔案

可以在extra資料夾中,建立其他資料庫配置,如database__test等。

用法:

<?php

一、先進行初始化使用

protected$db_test;

function__construct()

$getarr =$this->db_test->table('order')->select();// 使用

二、直接使用

$getarr = db::connect('database_test')->table('order')->select();

?>

二、方法鏈結資料庫

$db =db::connect([

'type

' => '

mysql',

'hostname

' => '

127.0.0.1',

'database

' => '

user

',// 資料庫名

'username

' => '

root

',// 使用者名稱

'password

' => '

root

',//密碼

'hostport

' => '

3306

',//埠

]);//查詢資料,和使用系統的db類方法略有差異

$getarr = $db->table("

order

")->select

();

tp5 thinkPHP5 渲染模板的方式

from 預設情況下,控制器的輸出全部採用return的方式,無需進行任何的手動輸出,系統會自動完成渲染內容的輸出。use think view class index class index 如果繼承了think controller類,就可以直接呼叫think view及think reques...

tp5框架原理詳解 TP5框架安全機制例項分析

防止sql注入 1 查詢條件盡量使用陣列方式,具體如下 wheres array wheres account account wheres password password user where wheres find 2 如果必須使用字串,建議使用預處理機制,具體如下 user d useri...

為什麼使用thinkphp5框架

1 運算元據庫簡單 1 模型 將增刪改查簡化,類似運算元組的方式運算元據庫和字段 2 連線資料庫簡化 不使用框架的時候,我在每個需要運算元據庫的php檔案,都引入了一次連線資料庫的檔案,在框架裡不需要 2 路由 沒使用框架的時候,頁面很單一,頁面的內容重新整理,其實是通過echo不同的內容實現,引數...