Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.

string
$_body= ''''
The body of any response to the current callback request
''
Details
array
$_headers= 'array()'
Array of headers. Each header is an array with keys 'name' and 'value'
array()
Details
_normalizeHeader(
string $name
)
:
string
Normalizes a header name to X-Capitalized-Names
Name | Type | Description |
---|---|---|
$name | string |
Type | Description |
---|---|
string |

canSendHeaders(
boolean $throw
=
false
)
:
boolean
Can we send headers?
Name | Type | Description |
---|---|---|
$throw | boolean | Whether or not to throw an exception if headers have been sent; defaults to false |
Type | Description |
---|---|
boolean |
Exception | Description |
---|---|
\Zend_Feed_Pubsubhubbub_Exception |

getHeader(
string $name
)
:
string|null
Check if a specific Header is set and return its value
Name | Type | Description |
---|---|---|
$name | string |
Type | Description |
---|---|
string|null |

getHeaders(
)
:
array
Return array of headers; see {@link $_headers} for format
Type | Description |
---|---|
array |

sendHeaders(
)
:
void
Send all headers
Sends any headers specified. If an {@link setHttpResponseCode() HTTP response code} has been specified, it is sent with the first header.

setBody(
string $content
)
:
\Zend_Feed_Pubsubhubbub_HttpResponse
Set body content
Name | Type | Description |
---|---|---|
$content | string |
Type | Description |
---|---|
\Zend_Feed_Pubsubhubbub_HttpResponse |

setHeader(
string $name, string $value, boolean $replace
=
false
)
:
\Zend_Feed_Pubsubhubbub_HttpResponse
Set a header
If $replace is true, replaces any headers already defined with that $name.
Name | Type | Description |
---|---|---|
$name | string | |
$value | string | |
$replace | boolean |
Type | Description |
---|---|
\Zend_Feed_Pubsubhubbub_HttpResponse |

setHttpResponseCode(
int $code
)
:
\Zend_Feed_Pubsubhubbub_HttpResponse
Set HTTP response code to use with headers
Name | Type | Description |
---|---|---|
$code | int |
Type | Description |
---|---|
\Zend_Feed_Pubsubhubbub_HttpResponse |