In the Zend Framework, there are two different arrays for storing headers in the response class: _headers[]and _headersRaw[]. And there are appropriate methods for installing each of them:
setHeader(), getHeaders(), clearHeader() and
setRawHeader(), getRawHeaders(), clearRawHeaders().
What is the reason for having a "header" and a "source header"? Is there any particular use in practice for each of these headings?
Green source
share