| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\common\behavior;
- use think\Log;
- use think\Request;
- /**
- * 应用行为管理
- * Class App
- * @package app\common\behavior
- */
- class App
- {
- /**
- * 应用开始
- * @param $dispatch
- */
- public function appBegin($dispatch)
- {
- // 记录访问日志
- if (!config('app_debug')) {
- $request = Request::instance();
- Log::record('[ ROUTE ] ' . var_export($dispatch, true), 'begin');
- Log::record('[ HEADER ] ' . var_export($request->header(), true), 'begin');
- Log::record('[ PARAM ] ' . var_export($request->param(), true), 'begin');
- }
- }
- }
|