由于某种原因,这在Kohana 3.2中不起作用:
$this->request->headers['Content-Type'] = 'text/xml';
自Kohana 3.1以来,这是否有所改变?
答案 0 :(得分:5)
它也不应该在3.1中起作用,但这应该是:
$this->request->headers('Content-Type', 'text/xml');
参见http://kohanaframework.org/3.2/guide/api/Request#headers 这是3.1中的请求/响应重构更改之一。