Yaf_Response_Abstract::setAllHeaders

(Yaf >=1.0.0) The setAllHeaders purpose protected void Yaf_Response_Abstract::setAllHeaders ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::response

(Yaf >=1.0.0) send response public void Yaf_Response_Abstract::response ( void ) send response Returns: Examples: Yaf_Response_Abstract::response() example <?php $response = new Yaf_Response_Http(); $response->setBody("Hello")->setBody(" World", "footer"); $response->response(); ?> The above example

Yaf_Response_Abstract::prependBody

(Yaf >=1.0.0) The prependBody purpose public bool Yaf_Response_Abstract::prependBody ( string $content [, string $key ] ) prepend 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 Not

Yaf_Response_Abstract::getHeader

(Yaf >=1.0.0) The getHeader purpose public void Yaf_Response_Abstract::getHeader ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::getBody

(Yaf >=1.0.0) Retrieve a exists content public mixed Yaf_Response_Abstract::getBody ([ string $key ] ) Retrieve a exists content Parameters: 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 Note: this parameter is introduced as of 2.2.0

Yaf_Response_Abstract::__destruct

(Yaf >=1.0.0) The __destruct purpose public void Yaf_Response_Abstract::__destruct ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::__construct

(Yaf >=1.0.0) The __construct purpose public Yaf_Response_Abstract::__construct ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::__clone

(Yaf >=1.0.0) The __clone purpose private void Yaf_Response_Abstract::__clone ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::clearHeaders

(Yaf >=1.0.0) The clearHeaders purpose public void Yaf_Response_Abstract::clearHeaders ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Response_Abstract::clearBody

(Yaf >=1.0.0) The clearBody purpose public bool Yaf_Response_Abstract::clearBody ([ string $key ] ) Clear existsed content Parameters: key the content key, if you don't specific, then all contents will be cleared. Note: this parameter is introduced as of 2.2.0 Returns: See al