IIS php.ini display_errors = stderr 到文件?
我正在 microsoft IIS 上运行 php 应用程序。我正在调试一个问题并想要使用 php.ini 指令 display_errors = stderr 。我想查看文件中的错误消息。 php.ini 中是否可以将 stderr(或 stdout)重定向到文件?
I am running a php app on microsoft IIS . I am debugging a problem and wants to use the php.ini directive display_errors = stderr . I want to see the errors messages in a file .
Is it possible in php.ini to redirect the stderr (or stdout) to a file ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是
error_log
是为了。That's what
error_log
is for.您可以通过适当设置
error_log
。You can get the errors logged into the file of your choice by appropriately setting the value of
error_log
.