标签: php http-headers content-type
如何在脚本执行期间找出此标头:header('Content-Type: application/json')? `
header('Content-Type: application/json')
答案 0 :(得分:3)
headers_list()将返回要发送到浏览器/客户端的标头列表。要确定是否尚未发送这些标头,请使用headers_sent()。
答案 1 :(得分:1)
您可以使用headers_sent或headers_list来确定标头是否已发送以及哪些标头已分别发送。
headers_sent
headers_list