沉默 PHP 7.4.8 服务器请求日志 "Accepted", "Closing"

Silence PHP 7.4.8 server request logs "Accepted", "Closing"

从 PHP 7.3 更新到 PHP 7.4.8 后,我注意到服务器已开始记录所有请求的“已接受”、“正在关闭”,有时:“已关闭但未发送一个请求;它可能只是一个未使用的推测性预连接。

[Wed Aug  5 17:51:27 2020] PHP 7.4.8 Development Server (http://localhost:3000) started
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 Accepted
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37792 Accepted
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 [200]: (null) /
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 Closing

[Wed Aug  5 17:52:02 2020] 127.0.0.1:37808 Closed without sending a request; it was probably just an unused speculative preconnection
[Wed Aug  5 17:52:02 2020] 127.0.0.1:37808 Closing

我想知道是否有以“静默”模式启动服务器的选项,其中日志将仅包含信息、警告和错误。

如果您自己启动 PHP 服务器,将 -q--no-header 参数(安静模式)传递给它就解决了这个问题:

php -q -S 127.0.0.1:8080 index.php

参见: