thinkphp5.11 關於數據庫鏈接的配置

  • config.php
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use \think\Request;



$basename = Request::instance()->root();

if (pathinfo($basename, PATHINFO_EXTENSION) == 'php') {

$basename = dirname($basename);

}
return [
// +----------------------------------------------------------------------
// | 應用設置
// +----------------------------------------------------------------------

// 應用調試模式
'app_debug' => true,
// 應用Trace
'app_trace' => false,
// 應用模式狀態
'app_status' => '',
// 是否支持多模塊
'app_multi_module' => true,
// 入口自動綁定模塊
'auto_bind_module' => false,
// 註冊的根命名空間
'root_namespace' => [],
// 擴展函數文件
'extra_file_list' => [THINK_PATH . 'helper' . EXT],
// 默認輸出類型
'default_return_type' => 'html',
// 默認AJAX 數據返回格式,可選json xml ...
'default_ajax_return' => 'json',
// 默認JSONP格式返回的處理方法
'default_jsonp_handler' => 'jsonpReturn',
// 默認JSONP處理方法
'var_jsonp_handler' => 'callback',
// 默認時區
'default_timezone' => 'PRC',
// 是否開啓多語言
'lang_switch_on' => false,
// 默認全局過濾方法 用逗號分隔多個
'default_filter' => '',
// 默認語言
'default_lang' => 'zh-cn',
// 應用類庫後綴
'class_suffix' => false,
// 控制器類後綴
'controller_suffix' => false,

// +----------------------------------------------------------------------
// | 模塊設置
// +----------------------------------------------------------------------

// 默認模塊名
'default_module' => 'index',
// 禁止訪問模塊
'deny_module_list' => ['common'],
// 默認控制器名
'default_controller' => 'Index',
// 默認操做名
'default_action' => 'index',
// 默認驗證器
'default_validate' => '',
// 默認的空控制器名
'empty_controller' => 'Error',
// 操做方法後綴
'action_suffix' => '',
// 自動搜索控制器
'controller_auto_search' => false,

// +----------------------------------------------------------------------
// | URL設置
// +----------------------------------------------------------------------

// PATHINFO變量名 用於兼容模式
'var_pathinfo' => 's',
// 兼容PATH_INFO獲取
'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'],
// pathinfo分隔符
'pathinfo_depr' => '/',
// URL僞靜態後綴
'url_html_suffix' => 'html',
// URL普通方式參數 用於自動生成
'url_common_param' => false,
// URL參數方式 0 按名稱成對解析 1 按順序解析
'url_param_type' => 0,
// 是否開啓路由
'url_route_on' => true,
// 路由使用完整匹配
'route_complete_match' => false,
// 路由配置文件(支持配置多個)
'route_config_file' => ['route'],
// 是否強制使用路由
'url_route_must' => false,
// 域名部署
'url_domain_deploy' => false,
// 域名根,如thinkphp.cn
'url_domain_root' => '',
// 是否自動轉換URL中的控制器和操做名
'url_convert' => true,
// 默認的訪問控制器層
'url_controller_layer' => 'controller',
// 表單請求類型假裝變量
'var_method' => '_method',
// 表單ajax假裝變量
'var_ajax' => '_ajax',
// 表單pjax假裝變量
'var_pjax' => '_pjax',
// 是否開啓請求緩存 true自動緩存 支持設置請求緩存規則
'request_cache' => false,
// 請求緩存有效期
'request_cache_expire' => null,
// 全局請求緩存排除規則
'request_cache_except' => [],

// +----------------------------------------------------------------------
// | 模板設置
// +----------------------------------------------------------------------

'template' => [
// 模板引擎類型 支持 php think 支持擴展
'type' => 'Think',
// 默認模板渲染規則 1 解析爲小寫+下劃線 2 所有轉換小寫
'auto_rule' => 1,
// 模板路徑
'view_path' => '',
// 模板後綴
'view_suffix' => 'html',
// 模板文件名分隔符
'view_depr' => DS,
// 模板引擎普通標籤開始標記
'tpl_begin' => '{',
// 模板引擎普通標籤結束標記
'tpl_end' => '}',
// 標籤庫標籤開始標記
'taglib_begin' => '{',
// 標籤庫標籤結束標記
'taglib_end' => '}',
],

// 視圖輸出字符串內容替換
'view_replace_str' => [
'__static__' =>'/static/',
'__JS__' =>'/static/admin/js',
'__IMG__' =>'/static/admin/img',
'__FONT__' =>'/static/admin/img',
],
// 默認跳轉頁面對應的模板文件
'dispatch_success_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl',
//'dispatch_success_tmpl' => ROOT_PATH.'public'.DS.'template'.DS.'successpage.html',
'dispatch_error_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl',

// +----------------------------------------------------------------------
// | 異常及錯誤設置
// +----------------------------------------------------------------------

// 異常頁面的模板文件
'exception_tmpl' => THINK_PATH . 'tpl' . DS . 'think_exception.tpl',

// 錯誤顯示信息,非調試模式有效
'error_message' => '頁面錯誤!請稍後再試~',
// 顯示錯誤信息
'show_error_msg' => false,
// 異常處理handle類 留空使用 \think\exception\Handle
'exception_handle' => '',

// +----------------------------------------------------------------------
// | 日誌設置
// +----------------------------------------------------------------------

'log' => [
// 日誌記錄方式,內置 file socket 支持擴展
'type' => 'File',
// 日誌保存目錄
'path' => LOG_PATH,
// 日誌記錄級別
'level' => [],
],

// +----------------------------------------------------------------------
// | Trace設置 開啓 app_trace 後 有效
// +----------------------------------------------------------------------
'trace' => [
// 內置Html Console 支持擴展
'type' => 'Html',
],

// +----------------------------------------------------------------------
// | 緩存設置
// +----------------------------------------------------------------------

'cache' => [
// 驅動方式
'type' => 'File',
// 緩存保存目錄
'path' => CACHE_PATH,
// 緩存前綴
'prefix' => '',
// 緩存有效期 0表示永久緩存
'expire' => 0,
],

// +----------------------------------------------------------------------
// | 會話設置
// +----------------------------------------------------------------------

'session' => [
'id' => '',
// SESSION_ID的提交變量,解決flash上傳跨域
'var_session_id' => '',
// SESSION 前綴
'prefix' => 'think',
// 驅動方式 支持redis memcache memcached
'type' => '',
// 是否自動開啓 SESSION
'auto_start' => true,
],

// +----------------------------------------------------------------------
// | Cookie設置
// +----------------------------------------------------------------------
'cookie' => [
// cookie 名稱前綴
'prefix' => '',
// cookie 保存時間
'expire' => 0,
// cookie 保存路徑
'path' => '/',
// cookie 有效域名
'domain' => '',
// cookie 啓用安全傳輸
'secure' => false,
// httponly設置
'httponly' => '',
// 是否使用 setcookie
'setcookie' => true,
],

//分頁配置
'paginate' => [
'type' => 'bootstrap',
'var_page' => 'page',
'list_rows' => 15,
],
'db_mongo' => [
'type' => '\think\mongo\Connection',
'query' => '\think\mongo\Query',
'hostname' => 'localhost',
'database' => 'olddream',
'username' => '',
'password' => '',
'hostport' => 27017,
],
'web_url'=>'http://www.gz.com/index.php',
'mysql_log'=>'D:\olddreamall\phpgjx1.7\wenheichouwa.log',
'mysql_host' =>'localhost', //mysql鏈接地址
'mysql_user' =>'root', //mysql帳號
'mysql_password' =>'wenwajiao', //mysql密碼
'mysql_port' =>'3306',
'menu'=>array(
'在線工具'=>'http://tool.oschina.net/',
'工具百寶箱'=>'http://tool.lu/',
'運行代碼'=>'http://tool.lu/coderunner/',
'模擬提交'=>'test_request.html',
'時間戳轉換'=>'http://tool.chinaz.com/Tools/unixtime.aspx',
'英文翻譯'=>'http://fanyi.baidu.com/?aldtype=16047#auto/zh/',
'TP手冊'=>'http://document.thinkphp.cn/manual_3_2.html',
'正則測試'=>'http://tool.oschina.net/regex',
'代碼比對'=>'http://tool.oschina.net/diff',
'JSON格式化'=>'http://tool.oschina.net/codeformat/json',
'phpinfo'=>'phpinfo.php',
'php探針'=>'tz.php',
'運行代碼'=>'run.php',
'phpmyadmin'=>'phpmyadmin.php',
'php手冊'=>'http://www.w3school.com.cn/php/index.asp',
'文件複製'=>'file_copy.php',
'TPshop官網'=>'http://www.tp-shop.cn')
];
  • database.php
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------

return [
// 數據庫類型
'type' => 'mysql',
// 服務器地址
'hostname' => '127.0.0.1',
// 數據庫名
'database' => 'sm8',
// 用戶名
'username' => 'root',
// 密碼
'password' => 'root',
// 端口
'hostport' => '3306',
// 鏈接dsn
'dsn' => '',
// 數據庫鏈接參數
'params' => [],
// 數據庫編碼默認採用utf8
'charset' => 'utf8',
// 數據庫表前綴
'prefix' => '',
// 數據庫調試模式
'debug' => true,
// 數據庫部署方式:0 集中式(單一服務器),1 分佈式(主從服務器)
'deploy' => 0,
// 數據庫讀寫是否分離 主從式有效
'rw_separate' => false,
// 讀寫分離後 主服務器數量
'master_num' => 1,
// 指定從服務器序號
'slave_no' => '',
// 自動讀取主庫數據
'read_master' => false,
// 是否嚴格檢查字段是否存在
'fields_strict' => true,
// 數據集返回類型
'resultset_type' => 'array',
// 自動寫入時間戳字段
'auto_timestamp' => false,
// 時間字段取出後的默認時間格式
'datetime_format' => 'Y-m-d H:i:s',
// 是否須要進行SQL性能分析
'sql_explain' => false,
'web_url' => 'www.gz.com',
];

 config.php文件中給出了'db_mongo'也就是thinkphp框架交互mongodb的代碼,再往下是一款神奇的Mysql命令執行跟蹤器---php工具箱的配置代碼php

 database.php文件則給出了鏈接mysql的用戶名和密碼html

相關文章
相關標籤/搜索