Yaf_Response_Abstract::setBody

(Yaf >=1.0.0)
Set content to response
public bool Yaf_Response_Abstract::setBody ( string $content [, string $key ] )

Set content to response

Parameters:
body

content string

key

the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

Note:

this parameter is introduced as of 2.2.0

Returns:
Examples:
Yaf_Response_Abstract::setBody() example
<?php
$response = new Yaf_Response_Http();

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

print_r($response);
echo $response;
?>

The above example will output something similar to:

Yaf_Response_Http Object
(
    [_header:protected] => Array
        (
        )

    [_body:protected] => Array
        (
            [content] => Hello
            [footer] =>  World
        )

    [_sendheader:protected] => 1
    [_response_code:protected] => 200
)
Hello World
See also:

Yaf_Response_Abstract::getBody() -

Yaf_Response_Abstract::appendBody() -

Yaf_Response_Abstract::prependBody() -

Yaf_Response_Abstract::clearBody() -

doc_php
2016-02-24 16:07:47
Comments
Leave a Comment

Please login to continue.