Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经自动化了我的error_reporting流程。错误会记录到文件中,并通过电子邮件定期发送。
error_reporting
问题是我没有得到足够的信息。例如,我可以看到未定义的索引通知;但我看不到它是在哪里触发的,因为它经常是一个包含的文件。
是否可以$_SERVER在错误日志中转储?
$_SERVER
我要做的是使用它捕获错误,然后使用它记录 我的自定义错误
您可以使用函数debug_backtrace
函数返回当前位置的回溯。
对于包含$_SERVER到电子邮件,您可以使用print_r($_SERVER, true);,但我认为这对您帮助不大。
print_r($_SERVER, true);