boaPHP开发手册v5.5

log类
版本 1.0+
命名空间 boa
文件 boa/log.php
说明 日志类,配置:'LOG' => [],
配置
配置项 默认值 类型 说明
enable false bool 是否开启日志功能
driver file string 日志驱动;可选值:file, net
type error,php_exception,php_error string 日志记录类型,支持自定义值;可选值:info, error, header, php_warning, php_error, php_deprecated, php_strict, php_exception
目录
方法 说明
__construct() 初始化
cfg() 获取或设置配置信息
set() 设置一条日志
save() 日志保存
方法

__construct()

说明
初始化
参数 必须 默认值 类型 说明
$cfg [] array 配置数据
示例
$log = boa::log()

cfg()

说明
获取或设置配置信息
参数 必须 默认值 类型 说明
$k null string
$v null string
返回值
同 base 类
示例
$log->cfg('enable', true)

set()

说明
设置一条日志
参数 必须 默认值 类型 说明
$type Y string 日志类型,支持自定义类型,配置type开启
$msg Y string 日志内容
示例
$log->cfg('type', 'custom,error...'); // 配置type,支持自定义类型:custom
$log->set('custom', '...');

save()

说明
日志保存