Zend框架日志错误和其他文件


Zend Framework Log Errors and Others to File

我需要通过创建插件或添加application.ini来记录错误,访问尝试等文件,在错误中保持默认不显示给最终用户

这正是创建Zend_Log的目的。

https://docs.zendframework.com/zend-log/intro/

$writer = new Zend_Log_Writer_Stream('/path/to/logfile');
$logger = new Zend_Log($writer);
$logger->info('Informational message');
$logger->warn('Warning message');