作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当PHP向日志发出PHP Notice
时,它包含出现问题的文件名和行号。对于大型应用程序,这通常不足以重现该问题。真正有用的是一些其他信息,最明显的是在此通知发生时被调用的URL。
有没有一种方法可以在PHP> = 7中自定义PHP Notice
消息?
最佳答案
创建您自己的错误处理程序并捕获通知,然后使用所需信息记录消息。下面的代码生成以下PHP错误日志文件。
[27-Feb-2019 13:55:09 America/New_York] 8 Undefined variable: hello from URI /customnotice.php
function myErrorHandler($errno,$errstr, $errfile, $errline) {
if ($errno == 8) { // this is a notice
error_log($errno . ' ' . $errstr . ' from URI ' . $_SERVER['REQUEST_URI']);
}
}
$old_error_handler = set_error_handler("myErrorHandler");
echo $hello; // will throw a notice for testing
关于php - PHP注意事项自定义格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54906991/
我是一名优秀的程序员,十分优秀!