1

我正在尝试在我的 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');

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

4

1 回答 1

0

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

$this->response->header('Last-Modified', gmdate('D, d M Y H:i:s') . ' GMT');
于 2012-11-26T11:00:56.127 回答