You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
// +----------------------------------------------------------------------
// | 應用設置
// +----------------------------------------------------------------------
return [
// 應用地址
'app_host' => env ( 'app.host' , '' ),
// 應用的命名空間
'app_namespace' => '' ,
// 是否啓用路由
'with_route' => true ,
// 默認應用
'default_app' => 'index' ,
// 默認時區
'default_timezone' => 'Asia/Shanghai' ,
// 應用映射(自動多應用模式有效)
'app_map' => [],
// 域名綁定(自動多應用模式有效)
'domain_bind' => [],
// 禁止URL訪問的應用列表( 自動多應用模式有效)
'deny_app_list' => [],
// 異常頁面的模板文件
'exception_tmpl' => app () -> getThinkPath () . 'tpl/think_exception.tpl' ,
// 錯誤顯示信息,非調試模式有效
'error_message' => '頁面錯誤!請稍後再試~' ,
// 顯示錯誤信息
'show_error_msg' => false ,
];