Skip to content

Commit 1c88ebb

Browse files
author
AizuYan
committed
Update README.md
1 parent 1fb7e67 commit 1c88ebb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ php日志系统
1111
* @desc 包含日志容器和日志写入类库
1212
*/
1313
include_once("./log.php");
14+
1415
/**
1516
* @desc 包含异常处理文件
1617
*/
18+
1719
require_once("./myexception.php");
1820

1921
//获取日志实例,并添加写入日志实例
@@ -24,7 +26,6 @@ self::$log->attach(new Logwriter("./data/notice"),Log::NOTICE);
2426
//设置异常处理函数
2527
set_exception_handler(array("Myexception","exceptionHandler"));
2628
set_error_handler(array("Myexception","errorHandler"));
27-
//设置一个程序异常终止的时候的错误处理函数
2829
register_shutdown_function(array("Myexception","shutdownHandler"));
2930

3031

0 commit comments

Comments
 (0)