如何获取 http_response_code 在 PHP 中设置的状态消息
How to get the status message set by http_response_code in PHP
http_response_code
函数将 header 设置为定义的代码和来自此映射的相应消息 http_status_codes.h。
是否可以收到消息?
在 Apache 下,您可以尝试 apache_request_headers()
。否则,该信息可能根本不可用(即直接发送到任何 HTTP 服务层,带外且从 ob_* 函数看不到)。
我认为如果不深入研究实际的源代码,就不可能得到明确的一般性答案。
http_response_code
函数将 header 设置为定义的代码和来自此映射的相应消息 http_status_codes.h。
是否可以收到消息?
在 Apache 下,您可以尝试 apache_request_headers()
。否则,该信息可能根本不可用(即直接发送到任何 HTTP 服务层,带外且从 ob_* 函数看不到)。
我认为如果不深入研究实际的源代码,就不可能得到明确的一般性答案。