first commit
This commit is contained in:
16
application/extra/cache.php
Normal file
16
application/extra/cache.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
|
||||
return [
|
||||
'type' => 'File',
|
||||
'path' => CACHE_PATH,
|
||||
'prefix' => '',
|
||||
'expire' => 0,
|
||||
'cache_subdir' => false,
|
||||
];
|
||||
14
application/extra/captcha.php
Normal file
14
application/extra/captcha.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
|
||||
return [
|
||||
'useCurve' => false,
|
||||
'length' => 4,
|
||||
'reset' => true,
|
||||
];
|
||||
55
application/extra/database.php
Normal file
55
application/extra/database.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
return [
|
||||
// 数据库类型
|
||||
'type' => 'mysql',
|
||||
// 服务器地址
|
||||
'hostname' => 'localhost',
|
||||
// 数据库名
|
||||
'database' => 'helper',
|
||||
// 用户名
|
||||
'username' => 'helper',
|
||||
// 密码
|
||||
'password' => 'wjyBRncHHY2ls4Cd',
|
||||
// 端口
|
||||
'hostport' => 3306,
|
||||
// 连接dsn
|
||||
'dsn' => '',
|
||||
// 数据库连接参数
|
||||
// 'params' => [\PDO::ATTR_PERSISTENT => true],
|
||||
// 数据库编码默认采用utf8
|
||||
'charset' => 'utf8mb4',
|
||||
// 数据库表前缀
|
||||
'prefix' => '',
|
||||
// 数据库调试模式
|
||||
'debug' => false,
|
||||
// 是否严格检查字段是否存在
|
||||
'fields_strict' => true,
|
||||
// 数据集返回类型
|
||||
'resultset_type' => 'array',
|
||||
// 自动写入时间戳字段
|
||||
'auto_timestamp' => true,
|
||||
// 时间字段取出后的默认时间格式
|
||||
'datetime_format' => 'Y-m-d H:i',
|
||||
// 是否需要进行SQL性能分析
|
||||
'sql_explain' => false,
|
||||
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
|
||||
'deploy' => 0,
|
||||
// 数据库读写是否分离 主从式有效
|
||||
'rw_separate' => false,
|
||||
// 读写分离后 主服务器数量
|
||||
'master_num' => 1,
|
||||
// 指定从服务器序号
|
||||
'slave_no' => '',
|
||||
// 是否需要断线重连
|
||||
'break_reconnect' => true,
|
||||
];
|
||||
16
application/extra/paginate.php
Normal file
16
application/extra/paginate.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
use think\Request;
|
||||
|
||||
return [
|
||||
'type' => '\tools\Pager',
|
||||
'list_rows' => Request::instance()->get('pageSize', 15),
|
||||
'var_page' => 'page',
|
||||
'query' => Request::instance()->get(),
|
||||
];
|
||||
20
application/extra/session.php
Normal file
20
application/extra/session.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
//
|
||||
// +----------------------------------------------------------------------
|
||||
// | 会话设置
|
||||
// +----------------------------------------------------------------------
|
||||
return [
|
||||
'id' => '',
|
||||
'name' => 'CJANGO_SID',
|
||||
'var_session_id' => 'session_id',
|
||||
'prefix' => '',
|
||||
'type' => '',
|
||||
'auto_start' => true,
|
||||
];
|
||||
14
application/extra/storage.php
Normal file
14
application/extra/storage.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
|
||||
return [
|
||||
'size' => 20 * 1024 * 1024,
|
||||
'path' => './uploads/', // 保存路径
|
||||
'replace' => true, // 存在同名是否覆盖
|
||||
];
|
||||
17
application/extra/wechat.php
Normal file
17
application/extra/wechat.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
// +------------------------------------------------+
|
||||
// |http://www.cjango.com |
|
||||
// +------------------------------------------------+
|
||||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||||
// +------------------------------------------------+
|
||||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||||
// +------------------------------------------------+
|
||||
|
||||
return [
|
||||
'token' => 'A2aj8BtAv',
|
||||
'appid' => 'wxa655be02706ddeea',
|
||||
'secret' => '06196cb22490c323a5edcbf1d9e67403',
|
||||
'AESKey' => 'u7xi2oB8FcFJ4dn2MiP3wFhOaM65WQQUgHIpnbTnEiv',
|
||||
'mch_id' => '1486263952',
|
||||
'paykey' => 'CA72BE33311570FE25AFD91DE880376D',
|
||||
];
|
||||
Reference in New Issue
Block a user