Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16126 программистов и 1772 робота. Сейчас ищут 1885 программистов ...
Yaf_Response_Abstract::appendBody - append to body
Вернуться к: Yaf_Response_Abstract
Yaf_Response_Abstract::appendBody
(Yaf >=1.0.0)
Yaf_Response_Abstract::appendBody — append to body
Описание
public bool Yaf_Response_Abstract::appendBody
( string
$content
[, string $key
] )append a content to a exists content block
Список параметров
-
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
Замечание:
this parameter is introduced as of 2.2.0
Возвращаемые значения
bool
Примеры
Пример #1 Yaf_Response_Abstract::appendBody()example
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->prependBody(" World");
echo $response;
?>
Результатом выполнения данного примера будет что-то подобное:
Hello World
Смотрите также
Смотрите также
- 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() - The clearBody purpose
Вернуться к: Yaf_Response_Abstract