正如许多其他问题所指出的,在 php.ini 中将 display_errors 设置为 Off 会使 Web 服务器在遇到致命错误时以状态码 500 Internal server error 而不是 200 OK 回答。我用一个未定义的函数设置了一个简单的测试来解释这种行为:
php.ini
display_errors = On
索引.php
<?php test();
给出:
Fatal error: Call to undefined function test()
in D:\xampp\htdocs\index.php on line 1
或者如果我像这样使函数调用静音,则只是一个空白页:
<?php @test();
在这两种情况下,答案标题如下:
HTTP/1.1 200 OK
Date: Tue, 10 Jul 2012 20:08:22 GMT
Server: Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1
X-Powered-By: PHP/5.3.8
Content-Length: 0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html
将 php.ini 更改为:
display_errors = Off
原因:
HTTP/1.0 500 Internal Server Error
Date: Tue, 10 Jul 2012 20:10:35 GMT
Server: Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1
X-Powered-By: PHP/5.3.8
Content-Length: 0
Connection: close
Content-Type: text/html
任何人都可以向我解释当 display_errors 关闭时使 Web 服务器回答 500 的底层机制吗?