(Yaf >=1.0.0)
Yaf_Response_Abstract::setBody — ������Ӧ��Body
$content
[, string $key
] ) : bool������Ӧ��Body
body
content string
key
body����Ӧ��key�����������һ��body�ļ�ֵ�ԣ������û��ָ��key��ϵͳĬ��ʹ��Yaf_Response_Abstract::DEFAULT_BODY
Note:
this parameter is introduced as of 2.2.0
Example #1 Yaf_Response_Abstract::setBody()example
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->setBody(" World", "footer");
print_r($response);
echo $response;
?>
�������̵���������ڣ�
Yaf_Response_Http Object ( [_header:protected] => Array ( ) [_body:protected] => Array ( [content] => Hello [footer] => World ) [_sendheader:protected] => 1 [_response_code:protected] => 200 ) Hello World