【发布时间】:2011-03-21 10:35:22
【问题描述】:
我如何在 cakephp 中编写 ["Content-Type"] = "text/xml" 以及我必须在哪个文件中包含那个。
请帮忙。
谢谢。
【问题讨论】:
-
你要设置标题吗?
-
是的,我正在尝试为我的页面设置标题
标签: php http cakephp header content-type
我如何在 cakephp 中编写 ["Content-Type"] = "text/xml" 以及我必须在哪个文件中包含那个。
请帮忙。
谢谢。
【问题讨论】:
标签: php http cakephp header content-type
Cake 方法是在控制器的某处使用RequestHandlerComponent::respondAs,例如$this->RequestHandler->respondAs('xml')。如果您的应用程序is set up appropriately,这甚至可能会自动发生。
PHP 方法是在任何输出之前的任何位置发出header('Content-Type: text/xml')(通常在控制器中的某个位置)。
【讨论】: