PHP 8.3.4 Released!

Yaf_Response_Abstract::setBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::setBodySet content to response

Beschreibung

public Yaf_Response_Abstract::setBody(string $content, string $key = ?): bool

Set content to response

Parameter-Liste

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

Hinweis:

this parameter is introduced as of 2.2.0

Rückgabewerte

Beispiele

Beispiel #1 Yaf_Response_Abstract::setBody()example

<?php
$response
= new Yaf_Response_Http();

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

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

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

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

Siehe auch

add a note

User Contributed Notes

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