本文实例讲述了php实现的debug log日志操作类。分享给大家供大家参考,具体如下:
<?php class Tool { public static function log($info) { $time = date('m-d H:i:s'); $backtrace = debug_backtrace(); $backtrace_line = array_shift($backtrace); // 哪一行调用的log方法 $backtrace_call = array_shift($backtrace); // 谁调用的log方法 $file = substr($backtrace_line['file'], strlen($_SERVER['DOCUMENT_ROOT'])); $line = $backtrace_line['line']; $class = isset($backtrace_call['class']) ? $backtrace_call['class'] : ''; $type = isset($backtrace_call['type']) ? $backtrace_call['type'] : ''; $func = $backtrace_call['function']; file_put_contents($_SERVER['DOCUMENT_ROOT'].'/debug.log', "$time $file:$line $class$type$func: $info\n", FILE_APPEND); } } class Action { public function a() { $this->b(); } public function b() { $this->c(); } public function c() { Tool::log('sdfsdf'); } } $action = new Action(); $action->a();
这里再补充一个函数:
function loginfo($format) { $args = func_get_args(); array_shift($args); $d = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 1)[0]; $info = vsprintf($format, $args); $data = sprintf("%s %s,%d: %s\n", date("Ymd His"), $d["file"], $d["line"], $info); file_put_contents(__DIR__."/log.txt", $data, FILE_APPEND); }
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP错误与异常处理方法总结》、《php字符串(string)用法总结》、《PHP数组(Array)操作技巧大全》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, 日志
, debug
, log
操作类
debug日志、httpclient debug日志、日志级别 info debug、tomcat debug日志、spring debug日志关闭,以便于您获取更多的相关知识。
时间: 2024-10-21 21:58:53