ThinkPHP 3 2 框架檔案構造

2021-08-20 06:27:50 字數 549 閱讀 3679

common //核心函式庫

build.php

functions.php //函式庫檔案

conf //核心配置檔案

convention.php

debug.php

lang //語言包

en-us.php //英文

zh-cn.php //中文

library //核心資源庫

behacior //系統行為目錄

org //功能類檔案

think //系統最核心檔案目錄

think.class.php //框架核心檔案

controller.class.php //控制器檔案

dispatcher.class.php //路由解析

model.class.php //模型父類

view.class.php //模板操作類

vendor //模板類檔案目錄

tpl //靜態模板

thinkphp.php //核心程式(每個專案都需引入)

thinkphp3 2入口檔案

define dir secure filename default.html 錯誤頁面 專案路徑 require thinkphp thinkphp.php 引用檔案 專案路徑 require thinkphp thinkphp.php 引用檔案 專案路徑 require thinkphp thi...

ThinkPHP3 2 驗證隨記

自動完成 靜態方式 在模型類裡面通過 auto屬性定義處理規則。動態方式 使用模型類的auto方法動態建立自動處理規則。自動驗證 靜態方式 在模型類裡面通過 validate屬性定義驗證規則。動態方式 使用模型類的validate方法動態建立自動驗證規則。定義格式為 array array 驗證欄位...

THINKPHP3 2命名空間

thinkphp3.2命名空間 3.2版本全面採用命名空間方式定義和載入類庫檔案,有效的解決多個模組之間的衝突問題,並且實現了更加高效的類庫自動載入機制。由於新版完全採用了命名空間的特性,因此只需要給類庫正確定義所在的命名空間,而命名空間的路徑與類庫檔案的目錄一致,那麼就可以實現類的自動載入。例如,...