Kohana 3.2 request-> headers ['Content-Type']一直失败

时间:2011-08-04 20:13:16

标签: php header kohana content-type kohana-3

由于某种原因,这在Kohana 3.2中不起作用:

$this->request->headers['Content-Type'] = 'text/xml';

自Kohana 3.1以来,这是否有所改变?

1 个答案:

答案 0 :(得分:5)

它也不应该在3.1中起作用,但这应该是:

$this->request->headers('Content-Type', 'text/xml');

参见http://kohanaframework.org/3.2/guide/api/Request#headers 这是3.1中的请求/响应重构更改之一。