作用,要设置HttpHeader,直接在response中设置即可,例如:
$response = new Response();
$response->headers->set('Content-Type', 'text/html');
$response->send();
另外,如果你想在Symfony中设置HttpHeader,也可以使用以下方法:
$response = $this->render('your_template.html.twig', array(
'http_headers' => array(
'Content-Type' => 'text/html',
),
));
这样,在渲染模板时,会自动设置相应的HttpHeader。
领取专属 10元无门槛券
手把手带您无忧上云