我使用的是 Internet Information Server 10,php 中有一个错误。我无法使用“echo”进行调试,因为如果发现错误,IIS10 会取消所有 html 渲染。
PHP.ini文件:
cgifix_pathinfo=1
cgi_force_redirect=1
fastcgi.impersonate=1
log_errors=on
error_reporting E_all
网站配置
errormode = detailed
existingresponse= passthrough
defaultresponsemode= execute url
日志,什么都没显示。
有什么帮助吗?
答案1
确保您已将其添加到 php.ini 中:
display_errors = On
而且我不确定 php.ini 中的设置是否区分大小写,以防万一将 E_all 更改为 E_ALL(在 errors_reporting 值中)。