Yaf_Response_Abstract
PHP Manual

Yaf_Response_Abstract::appendBody

(PECL yaf >=1.0.0)

Yaf_Response_Abstract::appendBodyappend to body

Opis

public bool Yaf_Response_Abstract::appendBody ( string $content [, string $key ] )

append a content to a exists content block

Parametry

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

Informacja:

this parameter is introduced as of 2.2.0

Zwracane wartości

bool

Przykłady

Przykład #1 Yaf_Response_Abstract::appendBody()example

<?php
$response 
= new Yaf_Response_Http();

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

echo 
$response;
?>

Powyższy przykład wyświetli coś podobnego do:

Hello World

Zobacz też:

Zobacz też:


Yaf_Response_Abstract
PHP Manual