在CakePHP应用程序中使用CakeResponse

时间:2012-11-25 21:15:20

标签: php cakephp http-headers cakephp-2.0 httpresponse

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

我应该再使用响应对象吗?

1 个答案:

答案 0 :(得分:0)

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

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