1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 流年 <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // 应用公共文件
- /**
- * 保存后台用户行为
- * @param string $remark 日志备注
- */
- function insert_admin_log($remark)
- {
- db('user_log')->insert([
- 'user_id' => session('id'),
- 'uname' => session('uname'),
- 'useragent' => request()->server('HTTP_USER_AGENT'),
- 'ip' => request()->ip(),
- 'url' => request()->url(true),
- 'method' => request()->method(),
- 'type' => request()->type(),
- 'param' => json_encode(request()->param()),
- 'remark' => $remark,
- 'create_time' => time(),
- ]);
- }
|