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.
我已将 PHP 日志文件配置为 loggly。我可以发现 PHP 通知的条目太多,即 3 out 4 是这个 php 通知。
如何PHP Notice:在 loggly 中排除特定的日志条目?或者,我可以只从 php.ini 文件中排除 php 通知条目吗?
PHP Notice:
您需要在 PHP 配置中排除通知消息。
error_reporting(E_ALL & ~E_NOTICE);
在这里阅读更多http://php.net/manual/en/errorfunc.configuration.php