/* Implementation of the language Header() function */
-/* {{{ proto void header(string header[, bool replace])
- Send a raw HTTP header */
+/* {{{ proto void header(string header [, bool replace])
+ Sends a raw HTTP header */
PHP_FUNCTION(header)
{
pval **arg1, **arg2;
/* php_set_cookie(name, value, expires, path, domain, secure) */
-/* {{{ proto void setcookie(string name [, string value [, int expires [, string path [, string domain [, string secure]]]]])
- Send a cookie */
+/* {{{ proto bool setcookie(string name [, string value [, int expires [, string path [, string domain [, string secure]]]]])
+ Sends a cookie */
PHP_FUNCTION(setcookie)
{
char *cookie, *encoded_value = NULL;
/* {{{ proto int headers_sent(void)
- Return true if headers have already been sent, false otherwise */
+ Returns true if headers have already been sent, false otherwise */
PHP_FUNCTION(headers_sent)
{
if (ZEND_NUM_ARGS() != 0) {