标签: php http header response
根据标题,例如,在仅包含此代码的php文件上的ab测试(apache基准测试)设法在-n 1000和-c 100上每秒执行少于20个请求。
<?php header('HTTP/1.1 404 My Test Phrase');
虽然仅设置状态代码不会产生同样的问题
header('HTTP/1.1 404');
或
http_response_code(404);
对此行为的任何解释?
谢谢。