PHP 8.5.10 Released!

Yaf_Response_Abstract::setBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::setBodySet content to the response

Açıklama

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

Set content to the response

Bağımsız Değişkenler

body

The content string.

key

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

Dönen Değerler

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

Örnekler

Örnek 1 Yaf_Response_Abstract::setBody() example

<?php
$response = new Yaf_Response_Http();

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

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

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

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

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

Ayrıca Bakınız

add a note

User Contributed Notes

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