(Yaf >=1.0.0)
Yaf_Response_Abstract::appendBody — �����е���Ӧbody���µ�����
$content
[, string $key
] ) : bool�����е���Ӧbody���µ�����
body
content string
key
��Ӧ���ݵ�key�����������һ����ֵ�ԣ������û�о�������õĻ���ϵͳĬ��ʹ��Yaf_Response_Abstract::DEFAULT_BODY
Note:
this parameter is introduced as of 2.2.0
bool
Example #1 Yaf_Response_Abstract::appendBody()example
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->prependBody(" World");
echo $response;
?>
�������̵���������ڣ�
Hello World