PHP 8.5.10 Released!

Yaf_Dispatcher::getResponse

(Yaf >=1.0.0)

Yaf_Dispatcher::getResponseGet the response object

Descrição

public function Yaf_Dispatcher::getResponse(): ?Yaf_Response_Abstract

Retrieve the Yaf_Response_Abstract instance used by the dispatcher.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The Yaf_Response_Abstract instance, or null if the application is not initialized.

Examples

Exemplo #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"
        );
    }
}
?>

Veja também

adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top