Отправка заголовка no-cache из Zend Framework
Размещено 2010-03-20
в разделе Программирование | Метки:
PHP, Zend Framework
<?php
class SomeController extends Zend_Controller_Action
{
public function someAction()
{
$this->getResponse()->setHeader('Cache-Control', 'no-cache', true)
->setHeader('Pragma', 'no-cache', true)
->setHeader('Expires', 'Sat, 26 Jul 1997 05:00:00 GMT', true);
}
}
?>