(Yaf >=1.0.0)
Yaf_Response_Abstract::setAllHeaders — Set all HTTP response headers
Set all HTTP response headers at once.
Note:
This method is only fully implemented in the Yaf_Response_Http subclass. In the abstract class it is a stub.
headersAn array of header name/value pairs. Any existing header with the same name is replaced.
Returns true.
Example #1 Yaf_Response_Abstract::setAllHeaders() example
<?php
class IndexController extends Yaf_Controller_Abstract
{
public function indexAction()
{
$this->getResponse()->setAllHeaders(array(
"Content-Type" => "application/json; charset=utf-8",
"Cache-Control" => "no-cache",
"X-Request-Id" => "7f3c2d91",
));
}
}
?>