From ec30d927a70129e2a342ef2a204efc23af7ed36e Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 6 Jul 2017 15:49:52 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=9F=BA=E4=BA=8E=E6=A0=87?= =?UTF-8?q?=E5=87=86=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common.php | 22 +++++++++++----------- application/route.php | 24 ++++++++++++------------ 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/application/common.php b/application/common.php index 43c9ab729..e599f5c73 100644 --- a/application/common.php +++ b/application/common.php @@ -24,7 +24,7 @@ use think\Db; * @param bool $replace * @param string|null $pathname */ -function p($data, $replace = false, $pathname = NULL) +function p($data, $replace = false, $pathname = null) { is_null($pathname) && $pathname = RUNTIME_PATH . date('Ymd') . '.txt'; $str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . "\n"; @@ -38,19 +38,19 @@ function p($data, $replace = false, $pathname = NULL) */ function & load_wechat($type = '') { - static $wechat = array(); + static $wechat = []; $index = md5(strtolower($type)); if (!isset($wechat[$index])) { $config = [ - 'token' => sysconf('wechat_token'), - 'appid' => sysconf('wechat_appid'), - 'appsecret' => sysconf('wechat_appsecret'), + 'token' => sysconf('wechat_token'), + 'appid' => sysconf('wechat_appid'), + 'appsecret' => sysconf('wechat_appsecret'), 'encodingaeskey' => sysconf('wechat_encodingaeskey'), - 'mch_id' => sysconf('wechat_mch_id'), - 'partnerkey' => sysconf('wechat_partnerkey'), - 'ssl_cer' => sysconf('wechat_cert_cert'), - 'ssl_key' => sysconf('wechat_cert_key'), - 'cachepath' => CACHE_PATH . 'wxpay' . DS, + 'mch_id' => sysconf('wechat_mch_id'), + 'partnerkey' => sysconf('wechat_partnerkey'), + 'ssl_cer' => sysconf('wechat_cert_cert'), + 'ssl_key' => sysconf('wechat_cert_key'), + 'cachepath' => CACHE_PATH . 'wxpay' . DS, ]; $wechat[$index] = Loader::get($type, $config); } @@ -122,7 +122,7 @@ function sysconf($name, $value = false) * array_column 函数兼容 */ if (!function_exists("array_column")) { - + function array_column(array &$rows, $column_key, $index_key = null) { $data = []; diff --git a/application/route.php b/application/route.php index a79592e8a..fd67741cb 100644 --- a/application/route.php +++ b/application/route.php @@ -14,38 +14,38 @@ /* 测试环境禁止操作路由绑定 */ think\Route::post([ - 'admin/config/index' => function() { + 'admin/config/index' => function () { return json(['code' => 0, 'msg' => '测试环境禁修改系统配置操作!']); }, - 'admin/config/file' => function() { + 'admin/config/file' => function () { return json(['code' => 0, 'msg' => '测试环境禁修改文件配置操作!']); }, - 'admin/menu/add' => function() { + 'admin/menu/add' => function () { return json(['code' => 0, 'msg' => '测试环境禁添加菜单操作!']); }, - 'admin/menu/edit' => function() { + 'admin/menu/edit' => function () { return json(['code' => 0, 'msg' => '测试环境禁编辑菜单操作!']); }, - 'admin/menu/forbid' => function() { + 'admin/menu/forbid' => function () { return json(['code' => 0, 'msg' => '测试环境禁止禁用菜单操作!']); }, - 'admin/menu/del' => function() { + 'admin/menu/del' => function () { return json(['code' => 0, 'msg' => '测试环境禁止删除菜单操作!']); }, - 'wechat/config/index' => function() { + 'wechat/config/index' => function () { return json(['code' => 0, 'msg' => '测试环境禁止修改微信配置操作!']); }, - 'wechat/config/pay' => function() { + 'wechat/config/pay' => function () { return json(['code' => 0, 'msg' => '测试环境禁止修改微信支付操作!']); }, - 'wechat/menu/edit' => function() { + 'wechat/menu/edit' => function () { return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']); - } + }, ]); think\Route::get([ - 'wechat/menu/cancel' => function() { + 'wechat/menu/cancel' => function () { return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']); - } + }, ]); return [];