天天看點

thinkPHP配置項

'url_pathinfo_depr'=>'-',//修改url的分隔符

'tmpl_l_delim'=>'<{', //修改左定界符

'tmpl_r_delim'=>'}>', //修改右定界符

'db_type'=>'mysql', //設定資料庫類型

'db_host'=>'localhost',//設定主機

'db_name'=>'thinkphp',//設定資料庫名

'db_user'=>'root', //設定使用者名

'db_pwd'=>'', //設定密碼

'db_port'=>'3306', //設定端口号

'db_prefix'=>'tp_', //設定表字首

'db_dsn'=>'mysql://root:@localhost:3306/thinkphp',//使用dsn方式配置資料庫資訊

'show_page_trace'=>true,//開啟頁面trace

'tmpl_template_suffix'=>'.html',//更改模闆檔案字尾名

'tmpl_file_depr'=>'_',//修改模闆檔案目錄層次

'tmpl_detect_theme'=>true,//自動偵測模闆主題

'theme_list'=>'your,my',//支援的模闆主題清單

'tmpl_parse_string'=>array( //添加自己的模闆變量規則

'__css__'=>__root__.'/public/css',

'__js__'=>__root__.'/public/js',

),

'layout_on'=>true,//開啟模闆渲染

'url_case_insensitive'=>true,//url不區分大小寫

'url_html_suffix'=>'html|shtml|xml',//限制僞靜态的字尾

'app_group_list' => 'home,admin', //項目分組設定

'default_group' => 'home', //預設分組