#預設url大小寫不敏感
#如果設定了以下值,則url大小寫敏感
'url_convert' => false,
#apache重設定
allowoverride all
#.htaccess
deny from all
#應用配置檔案中
#預設輸出格式為json,自動將陣列轉換為json返回
# view xml json jsonp
'default_return_type'=>'json'
慣例配置->應用配置->擴充套件配置->場景配置->模組配置->動態配置
#自動載入以下配置檔案
#方法中:
return xml(['data'=>$data,'code'=>1,'message'=>'操作完成']);
'trace' => [
'type' => 'socket',
// socket伺服器
'host' => 'slog.thinkphp.cn',
],
config::get();
config::has()
config::set('key','value')
config::set([
''=>'',
''=>''
])config();
需要在config.php中新增以下配置
'extra_config_list' => ['database'],
/* 資料庫設定 */
return [
// 資料庫型別
'type' => 'mysql',
// 伺服器位址
'hostname' => '127.0.0.1',
// 資料庫名
'database' => 'thinkphp',
// 資料庫使用者名稱
'username' => 'root',
// 資料庫密碼
'password' => '',
// 資料庫連線埠
'hostport' => '',
// 資料庫連線引數
'params' => ,
// 資料庫編碼預設採用utf8
'charset' => 'utf8',
// 資料庫表字首
'prefix' => '',
// 資料庫除錯模式
'debug' => false,
#普通模式
'url_route_on' => false,
#混合模式
'url_route_on' => true,
'url_route_must'=> false,
#強制模式
'url_route_on' => true,
'url_route_must' => true,
//顯示錯誤資訊,關閉除錯模式後仍可使用
'show_error_msg' => true,
TP5學習總結
1.乙個類主要包括屬性和方法 2.public表示訪問修飾符,意思是公開的,沒有隱藏。在類的外部是可以訪問這些公開的屬性的方法function是定義方法的關鍵字。3.private 訪問修飾符,表示私有的。被private修飾的屬性和方法,在類的外部是不能訪問的。4.屬性是用來儲存資料的,一般是名詞...
TP5偽靜態配置
為專案配置虛擬網域名稱 nginx 1 phpstudy 配置 站點網域名稱管理 正確配置指向應用專案 生成相應的配置檔案引數 本地配置host檔案 伺服器配置網域名稱 2 在nginx的conf裡面的vhosts.conf中找到剛剛生成的配置檔案引數在location 裡面配置 if e kate...
TP5 配置檔案修改
template 模板引擎型別 支援 php think 支援擴充套件 type think 模板路徑 view path template 更改預設模板路徑 模板字尾 view suffix htm 更改預設模板字尾 模板檔名分隔符 view depr ds,模板引擎普通標籤開始標記 tpl be...