(Yaf >=1.0.0)
Yaf_Response_Abstract::clearHeaders — Remove all response headers
Remove all HTTP response headers that have been set.
Note:
This method is only fully implemented in the Yaf_Response_Http subclass. In the abstract class it is a stub.
This function has no parameters.
Returns the response object itself on success, or false on failure.
Example #1 Yaf_Response_Abstract::clearHeaders() example
<?php
class IndexController extends Yaf_Controller_Abstract
{
public function indexAction()
{
$response = $this->getResponse();
$response->setHeader("Content-Type", "application/json");
$response->clearHeaders();
var_dump($response->getHeader()); // array(0) { }
}
}
?>