PHP log will not ignore repeated errors with ignore_repeated_errors = On

前端 未结 2 1629
执念已碎
执念已碎 2020-12-19 10:53

Although I have instructed php to only log an error once - i see the error over and over again in my log file. Any ideas why this directive would get ignored? I\'ve restar

2条回答
  •  粉色の甜心
    2020-12-19 11:24

    This directive will only stop the error from being logged again within the same script run. When the same script is run multiple times, you will still see that error every time.

提交回复
热议问题