gpt4 book ai didi

php - 在 PHP 命令行上显示完整的堆栈跟踪

转载 作者:行者123 更新时间:2023-12-02 13:16:34 25 4
gpt4 key购买 nike

问题

我的 PHP 堆栈跟踪缩写为:

Stack trace:
#0 /www/html/table/app/create.php(128): SoapClient->__call('call', Array)
#1 /www/html/table/app/create.php(128): SoapClient->call('5e81ad4c12668ec...', 'table.ad...', Array)

预期结果

我想查看从命令行运行 php 时被 ... 隐藏的部分。如何让 php 显示完整的消息?

最佳答案

您可以将其包含在 try ... catch 中,然后对异常执行 var_dump

try {

// the code that throws an exception
} catch ( Exception $e ) {

var_dump( $e->getTrace() );
}

关于php - 在 PHP 命令行上显示完整的堆栈跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34498002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com