Yaf_Response_Abstract::appendBody

(Yaf >=1.0.0)
append to body
public bool Yaf_Response_Abstract::appendBody ( string $content [, string $key ] )

append a content to a exists content block

Parameters:
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

Note:

this parameter is introduced as of 2.2.0

Returns:

bool

Examples:
Yaf_Response_Abstract::appendBody() example
1
2
3
4
5
6
7
<?php
$response new Yaf_Response_Http();
 
$response->setBody("Hello")->prependBody(" World");
 
echo $response;
?>

The above example will output something similar to:

Hello World
See also:

Yaf_Config_Ini -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.