Yaf_Response_Abstract::appendBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::appendBodyAppend to response body

Descrição

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

Append a content to a exists content block

Parâmetros

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

Nota:

this parameter is introduced as of 2.2.0

Valor Retornado

bool

Exemplos

Exemplo #1 Yaf_Response_Abstract::appendBody()example

<?php
$response
= new Yaf_Response_Http();

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

echo
$response;
?>

O exemplo acima produzirá algo semelhante a:

Hello World

Veja Também

add a note add a note

User Contributed Notes

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