Yaf_Response_Abstract::appendBody
(Yaf >=1.0.0)
Yaf_Response_Abstract::appendBody — Append to response body
Beschreibung
$content
, string $key
= ?): boolAppend a content to a exists content block
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
bool
Beispiele
Beispiel #1 Yaf_Response_Abstract::appendBody()example
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->prependBody(" World");
echo $response;
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Hello World
Siehe auch
- Yaf_Config_Ini
- Yaf_Response_Abstract::getBody() - Retrieve a exists content
- Yaf_Response_Abstract::setBody() - Set content to response
- Yaf_Response_Abstract::prependBody() - The prependBody purpose
- Yaf_Response_Abstract::clearBody() - Discard all exists response body