PHP 8.5.10 Released!

Yaf_Response_Abstract::response

(Yaf >=1.0.0)

Yaf_Response_Abstract::responseSend the response

Description

public function Yaf_Response_Abstract::response(): ?bool

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

Parameters

This function has no parameters.

Return Values

Returns true on success, or null on failure.

Examples

Example #1 Yaf_Response_Abstract::response() example

<?php
$response = new Yaf_Response_Http();

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

$response->response();
?>

The above example will output something similar to:

Hello World

See Also

add a note

User Contributed Notes

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