(Yaf >=1.0.0)
Yaf_Response_Abstract::response — Send response
This function has no parameters.
Example #1 Yaf_Response_Abstract::response()example
<?php$response = new Yaf_Response_Http();$response->setBody("Hello")->setBody(" World", "footer");$response->response();?>
The above example will output something similar to:
Hello World