Yaf_Response_Abstract::response

(Yaf >=1.0.0)

Yaf_Response_Abstract::responseSend the response

Опис

public function Yaf_Response_Abstract::response(): ?bool

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

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns true on success, or null on failure.

Приклади

Приклад #1 Yaf_Response_Abstract::response() example

<?php
$response = new Yaf_Response_Http();

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

$response->response();
?>

Поданий вище приклад виведе щось схоже на:

Hello World

Прогляньте також

add a note

User Contributed Notes

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