如何在cakephp中编写内容类型?

时间:2010-07-27 05:47:30

标签: php http cakephp header content-type

如何在cakephp中编写[“Content-Type”] =“text / xml”以及我必须包含该文件的文件。

请帮助。

感谢。

1 个答案:

答案 0 :(得分:5)

Cake方式是使用RequestHandlerComponent::respondAs,就像
一样 $this->RequestHandler->respondAs('xml'),在控制器的某个地方。如果您的应用is set up appropriately

,这甚至可能会自动发生

PHP的方法是在任何输出之前的任何地方发出header('Content-Type: text/xml')(通常在控制器的某个地方)。