如何将 PHP 回溯保存到错误日志中?

发布于 2024-12-19 11:58:30 字数 119 浏览 1 评论 0原文

我现在正在使用它:

error_log(serialize(debug_backtrace()));

但我每次都必须反序列化它。有没有更好的方法来存储回溯?

I'm using this right now:

error_log(serialize(debug_backtrace()));

But I have to unserialize it every time. Is there a better way to store backtraces?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

落在眉间の轻吻 2024-12-26 11:58:30

这应该生成一个可读的字符串:

error_log(print_r(debug_backtrace(), true));

此外, debug_print_backtrace() 将反向跟踪打印为字符串,并且可以使用以下命令捕获其输出常规输出缓冲区功能:

ob_start();
debug_print_backtrace();
error_log(ob_get_clean());

This should generate a readable string:

error_log(print_r(debug_backtrace(), true));

Additionally, debug_print_backtrace() prints the back trace as string and its output can be captured with regular output buffer functions:

ob_start();
debug_print_backtrace();
error_log(ob_get_clean());
歌枕肩 2024-12-26 11:58:30

从我的角度来看,最好的方法是使用异常功能:

$e = new Exception();
$e->getTraceAsString();

From my perspective the best approach is using an exception functionality:

$e = new Exception();
$e->getTraceAsString();
牵你手 2024-12-26 11:58:30
    $log = var_export(debug_backtrace(), true);

然后使用变量$log来登录文件或其他什么。

    $log = var_export(debug_backtrace(), true);

Then use the variable $log to log in file or what ever.

一腔孤↑勇 2024-12-26 11:58:30

对于那些可能想要更紧凑版本的人来说,这也可以解决问题:

error_log((new Exception())->getTraceAsString())

For those who might want a more compact version, this will also do the trick:

error_log((new Exception())->getTraceAsString())
旧时模样 2024-12-26 11:58:30

有点难看但可行,我这样做:

 error_log('Identifying string so that it doesn\'t just end up as gibberish' . json_encode(debug_backtrace()));

A little ugly but workable, I do this:

 error_log('Identifying string so that it doesn\'t just end up as gibberish' . json_encode(debug_backtrace()));
慢慢从新开始 2024-12-26 11:58:30

以下内容可以写入 .txt 文件,也可以访问它的内容(如 $content[0]),而不是 var_export,我发现这有点棘手:

    $content = unserialize(serialize(debug_backtrace()));

The following can either be written to a .txt file or you can also access it's contents (like $content[0]) as opposed to var_export which is a bit trickier I find:

    $content = unserialize(serialize(debug_backtrace()));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文