Yaf_Response_Abstract::getBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::getBodyRetrieve a exists content

Опис

public mixed Yaf_Response_Abstract::getBody ([ string $key ] )

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"
}

Прогляньте Також

add a note add a note

User Contributed Notes

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