Yaf_Response_Abstract::response

(Yaf >=1.0.0)

Yaf_Response_Abstract::responseSend the response

Beschreibung

public function Yaf_Response_Abstract::response(): ?bool

Send the response: the headers and all body blocks, in order.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns true on success, or null on failure.

Beispiele

Beispiel #1 Yaf_Response_Abstract::response() example

<?php
$response = new Yaf_Response_Http();

$response->setBody("Hello")->setBody(" World", "footer");

$response->response();
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Hello World

Siehe auch

add a note

User Contributed Notes

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