TP3 2框架常用配置

2021-08-16 08:11:51 字數 1514 閱讀 4861

return array(

/* 資料庫設定 */

'db_type'              =>  'mysql',    // 資料庫型別

'db_host'              =>  '127.0.0.1', // 伺服器位址

'db_name'              =>  'dog',          // 資料庫名

'db_user'              =>  'root',      // 使用者名稱

'db_pwd'                =>  'root',          // 密碼

'db_port'              =>  '3306',        // 埠

'db_prefix'            =>  'dog_',    // 資料庫表字首

//分頁:煤業顯示幾條資料

'pagesize' => 2,

// 預設拒絕訪問的模組

'module_deny_list'      =>  array('common','runtime'),

// 預設允許訪問的模組

'module_allow_list'      =>  array('admin','home'),

//'配置項'=>'配置值'

'default_module'        =>  'admin',  // 預設模組

'default_controller'    =>  'index', // 預設控制器名稱

'default_action'        =>  'index', // 預設操作名稱

// 開啟頁面trace

'show_page_trace' => false,

//配置模版常量

'tmpl_parse_string' => array(

'__home__' => __root__ . '/public/home',

'__admin__' => __root__ . '/public/admin',

),/* 模板引擎設定 */

'tmpl_action_error'    =>  think_path.'tpl/msg.html', // 預設錯誤跳轉對應的模板檔案

'tmpl_action_success'  =>  think_path.'tpl/msg.html', // 預設成功跳轉對應的模板檔案

'tmpl_exception_file'  =>  think_path.'tpl/think_exception.tpl',// 異常頁面的模板檔案

/* url設定 */

/**  // url訪問模式,可選引數0、1、2、3,代表以下四種模式:

*  0 (普通模式); 1 (pathinfo 模式);

*  2 (rewrite  模式); 3 (相容模式)  預設為pathinfo 模式

*/'url_model'            =>  4,

);

tp3 2復合查詢

where member.ming array like key where xueyuan.xingming array like key where xueyuan.dizhi array like key where xueyuan.shoujihao array like key where...

tp3 2自動驗證

namespace home model usethink model class usermodel extends model x u 使用者名稱長度為3 18位字元 2 password require 密碼不能為空 password a za z 0 9 a za z0 9 密碼格式不對 必...

tp3 2 語言切換

1 return array 3 1 lang switch on true,開啟語言包功能 2 lang auto detect true,自動偵測語言 開啟多語言功能後有效 3 lang list zh cn,en us 允許切換的語言列表 用逗號分隔 4 var language l 預設語言...