Yaf_Response_Abstract::prependBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::prependBodyPrepend to the response body

Description

public function Yaf_Response_Abstract::prependBody(string $body, string $key = ?): Yaf_Response_Abstract|false|null

Prepend to the response body

Parameters

body

The content string.

key

the content key. If not specified, Yaf_Response_Abstract::DEFAULT_BODY will be used.

Return Values

Returns the response object itself on success, or false on failure.

Examples

Example #1 Yaf_Response_Abstract::prependBody() example

<?php
$response = new Yaf_Response_Http();

$response->setBody("World")->prependBody("Hello ");

echo $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.