[TOC]
* * * * *
## 1 日志文件源代码(thinkphp/library/think/Log.php)
~~~
class Log
{
const LOG = 'log';
const ERROR = 'error';
const INFO = 'info';
const SQL = 'sql';
const NOTICE = 'notice';
const ALERT = 'alert';
protected static $log = [];
protected static $type = ['log', 'error', 'info', 'sql', 'notice', 'alert'];
protected static $driver = null;
protected static $alarm = null;
public static function init($config = [])
{
$type = isset($config['type']) ? $config['type'] : 'File';
$class = (!empty($config['namespace']) ? $config['namespace'] : '\\think\\log\\driver\\') . ucwords($type);
unset($config['type']);
self::$driver = new $class($config);
APP_DEBUG && Log::record('[ LOG ] INIT ' . $type . ': ' . var_export($config, true), 'info');
}
public static function alarm($config = [])
{
$type = isset($config['type']) ? $config['type'] : 'Email';
$class = (!empty($config['namespace']) ? $config['namespace'] : '\\think\\log\\alarm\\') . ucwords($type);
unset($config['type']);
self::$alarm = new $class($config['alarm']);
APP_DEBUG && Log::record('[ CACHE ] ALARM ' . $type . ': ' . var_export($config, true), 'info');
}
public static function getLog()
{
return self::$log;
}
public static function record($msg, $type = 'log')
{
if (!is_string($msg)) {
$msg = var_export($msg, true);
}
self::$log[] = ['type' => $type, 'msg' => $msg];
}
public static function clear()
{
self::$log = [];
}
public static function save()
{
if (is_null(self::$driver)) {
self::init(Config::get('log'));
}
return self::$driver->save(self::$log);
}
public static function write($msg, $type = 'log')
{
if (!is_string($msg)) {
$msg = var_export($msg, true);
}
$log[] = ['type' => $type, 'msg' => $msg];
APP_HOOK && Hook::listen('log_write', $log);
if (is_null(self::$driver)) {
self::init(Config::get('log'));
}
return self::$driver->save($log);
}
public static function send($msg)
{
self::$alarm && self::$alarm->send($msg);
}
public static function __callStatic($method, $args)
{
if (in_array($method, self::$type)) {
array_push($args, $method);
return call_user_func_array('\\think\\Log::record', $args);
}
}
}
~~~
## 2 分析
### 成员变量
日志类型常量
const LOG = 'log';
const ERROR = 'error';
const INFO = 'info';
const SQL = 'sql';
const NOTICE = 'notice';
const ALERT = 'alert';
日志内容,日志类型,日志缓存驱动,日志警告驱动
protected static $log = [];
protected static $type = ['log', 'error', 'info', 'sql', 'notice', 'alert'];
protected static $driver = null;
protected static $alarm = null;
### 成员方法
>[info] init() 日志驱动初始化
`public static function init($config = [])`
> $config: 日志配置参数
* * * * *
>[info] alarm() 警告驱动初始化
`public static function alarm($config = [])`
> $config:日志配置参数
* * * * *
>[info] getLog() 获取日志内容
`public static function getLog()`
* * * * *
>[info] recode() 记录日志信息到$log
`public static function record($msg, $type = 'log')`
> $msg:日志内容
> $type:日志类型
* * * * *
>[info] log() 清空日志内容
`public static function clear()`
* * * * *
>[info] save() 保存日志内容
`public static function save()`
* * * * *
>[info] write() 实时保存日志内容
`public static function write($msg, $type = 'log')`
> $msg:日志内容
> $type:日志类型
可回调log_write标签行为
* * * * *
>[info] send() 发送警告
`public static function send($msg)`
> $msg:调试信息
* * * * *
>[info] __callStatic() 静态调用
`public static function __callStatic($method, $args)`
> $method:静态方法名称
> ['log', 'error', 'info', 'sql', 'notice', 'alert']其中一个
> $args:日志参数
例如:Log::Log(xx)
## 3 总结
Log.php 记录调试信息到内存,
可以使用save() write()保存到文件
还可以使用send()发送预警信息
- 更新记录
- 概述
- 文件索引
- 函数索引
- 章节格式
- 框架流程
- 前:章节说明
- 主:(index.php)入口
- 主:(start.php)框架引导
- 主:(App.php)应用启动
- 主:(App.php)应用调度
- C:(Controller.php)应用控制器
- M:(Model.php)数据模型
- V:(View.php)视图对象
- 附:(App.php)应用启动
- 附:(base.php)全局变量
- 附:(common.php)模式配置
- 附:(convention.php)全局配置
- 附:(Loader.php)自动加载器
- 附:(Build.php)自动生成
- 附:(Hook.php)监听回调
- 附:(Route.php)全局路由
- 附:(Response.php)数据输出
- 附:(Log.php)日志记录
- 附:(Exception.php)异常处理
- 框架工具
- 另:(helper.php)辅助函数
- 另:(Cache.php)数据缓存
- 另:(Cookie.php)cookie操作
- 另:(Console.php)控制台
- 另:(Debug.php)开发调试
- 另:(Error.php)错误处理
- 另:(Url.php)Url操作文件
- 另:(Loader.php)加载器实例化
- 另:(Input.php)数据输入
- 另:(Lang.php)语言包管理
- 另:(ORM.php)ORM基类
- 另:(Process.php)进程管理
- 另:(Session.php)session操作
- 另:(Template.php)模板解析
- 框架驱动
- D:(\config)配置解析
- D:(\controller)控制器扩展
- D:(\model)模型扩展
- D:(\db)数据库驱动
- D:(\view)模板解析
- D:(\template)模板标签库
- D:(\session)session驱动
- D:(\cache)缓存驱动
- D:(\console)控制台
- D:(\process)进程扩展
- T:(\traits)Trait目录
- D:(\exception)异常实现
- D:(\log)日志驱动
- 使用范例
- 服务器与框架的安装
- 控制器操作
- 数据模型操作
- 视图渲染控制
- MVC开发初探
- 模块开发
- 入口文件定义全局变量
- 运行模式开发
- 框架配置
- 自动生成应用
- 事件与插件注册
- 路由规则注册
- 输出控制
- 多种应用组织
- 综合应用
- tp框架整合后台auto架构快速开发
- 基础原理
- php默认全局变量
- php的魔术方法
- php命名空间
- php的自动加载
- php的composer
- php的反射
- php的trait机制
- php设计模式
- php的系统时区
- php的异常错误
- php的输出控制
- php的正则表达式
- php的闭包函数
- php的会话控制
- php的接口
- php的PDO
- php的字符串操作
- php的curl
- 框架心得
- 心:整体结构
- 心:配置详解
- 心:加载器详解
- 心:输入输出详解
- 心:url路由详解
- 心:模板详解
- 心:模型详解
- 心:日志详解
- 心:缓存详解
- 心:控制台详解
- 框架更新
- 4.20(验证类,助手函数)
- 4.27(新模型Model功能)
- 5.4(新数据库驱动)
- 7.28(自动加载)