這篇文章為大家帶來了關於PHP的相關知識,其中主要根據範例來看一下使用中間件記錄行為日誌的問題,包括了使用日誌通道暫存行為日誌、使用定時任務將日誌內容定時寫入資料庫等,下面一起來看一下,希望對大家有幫助。

推薦學習:《PHP影片教學》
php think make:middleware Behavior
這個指令會app/middleware目錄下面產生一個Behavior中間件。內容如下:
<?phpdeclare (strict_types = 1);namespace app\middleware;use think\facade\Log;class Behavior{
/**
* 处理请求
*
* @param \think\Request $request
* @param \Closure $next
* @return Response
*/
public function handle($request, \Closure $next)
{
//start 加入以下内容
$admin = get_admin_info(); //当前登录用户的信息,自己实现
$method = strtolower($request->method());
$is_ajax = $request->isAjax();
$route = $request->pathinfo();
$req = $_REQUEST;
unset($req['s'],$req['_session']);
$req_data = $req ? json_encode($req) : '';
$data = [
'admin_id' => $admin['id'], //操作人id
'admin_user' => $admin['user'], //操作人用户名
'route' => $route, //操作的路由地址
'method' => $method, //get/post
'req_tp' => $is_ajax ? 'ajax' : 'normal',
'req_data' => $req_data, //get/post的数据
'ip' => getIp(),
'create_time' => time()
];
//end
return $next($request);
}}二、使用日誌通道暫存行為日誌不建議將行為日誌即時寫入資料庫給資料庫造成不必要的壓力. 我們先寫入log檔案快取,定時存入資料庫
提示:先閱讀官方日誌處理教學https://www.kancloud.cn/manual/thinkphp6_0/1037616日誌處理
開啟config/log.php ,在'channels' => [] 最後加入一個記錄行為日誌的單獨通道:2.註冊全域中間件// 其它日志通道配置 //行为日志 'behavior' => [ 'path' => runtime_path().'behavior', //日志存放目录 'type' => 'File', 'single' => 'b', //单一文件日志:文件名 'file_size' => 1024*1024*10, //日志文件大小限制(超出会生成多个文件 'max_files' => 30, //文件最大数量 'realtime_write' => false, // 关闭实时写入 ],
開啟app/middleware.php ,註冊個行為日誌全域中間件
<?php // 全局中间件定义文件return [
// 全局请求缓存
// \think\middleware\CheckRequestCache::class,
// 多语言加载
// \think\middleware\LoadLangPack::class,
// Session初始化
// \think\middleware\SessionInit::class
// 行为日志
\app\middleware\Behavior::class, ];
3.測試能否成功產生日誌隨便訪問一個本專案頁面,例如:http://www.tp6.com/index/index/test?a=1&b=2,看能否產生以下文件.
開啟文件,資料已寫入
{“time”:“2022-04-16T21:38:48 08:00”,“type”:“info”,“msg”:"{“admin_id ”:888,“admin_user”:“fanchen”,“route”:“index\/index\/test”,“method”:“get”,“req_tp”:“normal”,“req_data”:"{\“ a\”:\“1\”,\“b\”:\“2\”}",“ip”:“127.0.0.1”,“create_time”:1650116328}"}
/**
* 定时任务服务器定时将用户行为日志插入到数据库
* @return void
*/
public function sync_behavior_log()
{
$path = runtime_path() . 'behavior/b.log';
$b_file = file_get_contents($path);
$b_arr = explode(PHP_EOL, $b_file);
$d = [];
foreach ($b_arr as $b) {
$data = json_decode($b, true);
if (!empty($data['msg'])) {
$d[] = json_decode($data['msg'], true);
}
}
if ($d) {
try {
Db::name('log_behavior')->insertAll($d); //批量插入数据库
file_put_contents($path, ''); //清空文件日志
echo '采集用户行为日志成功' . count($d);
} catch (DbException $e) {
echo ($e->getMessage());
}
}
}SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for log_behavior
-- ----------------------------
DROP TABLE IF EXISTS `log_behavior`;
CREATE TABLE `log_behavior` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户id',
`admin_user` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '用户名',
`route` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块名称',
`method` enum('delete','put','post','get') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'get' COMMENT '请求方式 1get 2post 3put 4delete',
`req_data` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '请求数据',
`ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '用户ip',
`create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `uid`(`admin_id`) USING BTREE,
INDEX `admin_user`(`admin_user`) USING BTREE,
INDEX `route`(`route`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3902195 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '行为日志' ROW_FORMAT = Compact;
SET FOREIGN_KEY_CHECKS = 1;PHP影片教學》
#
以上是實例解析thinkphp怎麼用中間件記錄行為日誌的詳細內容。更多資訊請關注PHP中文網其他相關文章!