我面对这个问题已有一段时间了。即使我在标题之前输出了很多东西,仍然会发送我的标题。 注意:我在php.ini中禁用了output_buffering
查看:(headers.php
)
<html>
<head>
<title> BLAH </title>
</head>
<body>
<p> TEXT </p>
<?php
header("Pragma: no-cache");
echo "something";
header("Content-type: text/html");
?>
</body>
</html>
路线:
Route::get("header", function(){
return View::make("headers");
});
答案 0 :(得分:0)
响应由Laravel
的{{1}}类处理,此类将响应发送回Response
,client/browser
设置标头。在您的示例中,您将返回视图,并在视图中显示任何内容,Laravel
框架将呈现这些内容,然后呈现的输出将发送到Laravel
。
您询问了header_list
查看有关headers_list()的client/browser
手册:
headers_list - 返回已发送(或准备好)的响应标头列表 发送)
此处PHP
是您的X-Powered-By: PHP/5.4.12
版本,是一个回复标题。