Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16244 программиста и 1783 робота. Сейчас ищут 1192 программиста ...
Yaf_Response_Abstract::getBody - Retrieve a exists content
Вернуться к: Yaf_Response_Abstract
Yaf_Response_Abstract::getBody
(Yaf >=1.0.0)
Yaf_Response_Abstract::getBody — Retrieve a exists content
Список параметров
-
key
-
the content key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used. if you pass in a
NULL
, then all contents will be returned as a arrayЗамечание:
this parameter is introduced as of 2.2.0
Возвращаемые значения
Примеры
Пример #1 Yaf_Response_Abstract::getBody()example
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->setBody(" World", "footer");
var_dump($response->getBody()); //default
var_dump($response->getBody(Yaf_Response_Abstract::DEFAULT_BODY)); //same as above
var_dump($response->getBody("footer"));
var_dump($response->getBody(NULL)); //get all
?>
Результатом выполнения данного примера будет что-то подобное:
string(5) "Hello" string(5) "Hello" string(6) " World" array(2) { ["content"]=> string(5) "Hello" ["footer"]=> string(6) " World" }
Смотрите также
- Yaf_Response_Abstract::setBody() - Set content to response
- Yaf_Response_Abstract::appendBody() - append to body
- Yaf_Response_Abstract::prependBody() - The prependBody purpose
- Yaf_Response_Abstract::clearBody() - The clearBody purpose
Вернуться к: Yaf_Response_Abstract