[更新]基于标准优化代码

This commit is contained in:
Anyon 2017-07-06 15:49:52 +08:00
parent cbc573f3b9
commit ec30d927a7
2 changed files with 23 additions and 23 deletions

View File

@ -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,7 +38,7 @@ 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 = [

View File

@ -40,12 +40,12 @@ think\Route::post([
},
'wechat/menu/edit' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
}
},
]);
think\Route::get([
'wechat/menu/cancel' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
}
},
]);
return [];