在 CakePHP 应用程序中使用 CakeResponse



我正在尝试在我的 CakePHP 2.2 应用程序中使用 CakeResponse。当我使用它时,我可以在页面的标题中看到我的响应。没关系:

header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');

但是当我这样做时,我在标题中看不到它。

$this->response->header('Last-Modified:', gmdate('D, d M Y H:i:s') . ' GMT');
$this->response->header('Last-Modified', gmdate('D, d M Y H:i:s') . ' GMT');

这也无济于事:

$this->response->modified(gmdate('D, d M Y H:i:s') . ' GMT');

我应该做更多的事情来使用响应对象吗?

尝试不使用:,如下所示:

$this->response->header('Last-Modified', gmdate('D, d M Y H:i:s') . ' GMT');

相关内容

  • 没有找到相关文章

最新更新