从 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
你找到解决办法了吗?我也遇到同样的问题了!