mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]基于标准优化代码
This commit is contained in:
parent
cbc573f3b9
commit
ec30d927a7
@ -24,7 +24,7 @@ use think\Db;
|
|||||||
* @param bool $replace
|
* @param bool $replace
|
||||||
* @param string|null $pathname
|
* @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';
|
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";
|
$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 = '')
|
function & load_wechat($type = '')
|
||||||
{
|
{
|
||||||
static $wechat = array();
|
static $wechat = [];
|
||||||
$index = md5(strtolower($type));
|
$index = md5(strtolower($type));
|
||||||
if (!isset($wechat[$index])) {
|
if (!isset($wechat[$index])) {
|
||||||
$config = [
|
$config = [
|
||||||
|
@ -40,12 +40,12 @@ think\Route::post([
|
|||||||
},
|
},
|
||||||
'wechat/menu/edit' => function () {
|
'wechat/menu/edit' => function () {
|
||||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
|
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
|
||||||
}
|
},
|
||||||
]);
|
]);
|
||||||
think\Route::get([
|
think\Route::get([
|
||||||
'wechat/menu/cancel' => function () {
|
'wechat/menu/cancel' => function () {
|
||||||
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
|
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
|
||||||
}
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return [];
|
return [];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user