【问题标题】:How to write content type in cakephp?如何在 cakephp 中编写内容类型?
【发布时间】:2011-03-21 10:35:22
【问题描述】:

我如何在 cakephp 中编写 ["Content-Type"] = "text/xml" 以及我必须在哪个文件中包含那个。

请帮忙。

谢谢。

【问题讨论】:

  • 你要设置标题吗?
  • 是的,我正在尝试为我的页面设置标题

标签: php http cakephp header content-type


【解决方案1】:

Cake 方法是在控制器的某处使用RequestHandlerComponent::respondAs,例如
$this->RequestHandler->respondAs('xml')。如果您的应用程序is set up appropriately,这甚至可能会自动发生。

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

【讨论】:

猜你喜欢
  • 1970-01-01
  • 2023-04-10
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多