(Yaf >=1.0.0)
Yaf_Dispatcher::getResponse — Get the response object
Retrieve the Yaf_Response_Abstract instance used by the dispatcher.
Diese Funktion besitzt keine Parameter.
The Yaf_Response_Abstract instance, or null if
the application is not initialized.
Beispiel #1 Yaf_Dispatcher::getResponse() example
<?php
class CharsetPlugin extends Yaf_Plugin_Abstract
{
public function preDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response)
{
// Same response object as the one held by the dispatcher
Yaf_Dispatcher::getInstance()->getResponse()->setHeader(
"Content-Type", "text/html; charset=utf-8"
);
}
}
?>