PHP 8.5.10 Released!

Yaf_Dispatcher::getResponse

(Yaf >=1.0.0)

Yaf_Dispatcher::getResponseGet the response object

Açıklama

public function Yaf_Dispatcher::getResponse(): ?Yaf_Response_Abstract

Retrieve the Yaf_Response_Abstract instance used by the dispatcher.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

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

Örnekler

Örnek 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"
        );
    }
}
?>

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top