From: Egon Schmid Date: Fri, 19 Oct 2001 19:21:28 +0000 (+0000) Subject: Fixed other protos. X-Git-Tag: POST_PARAMETER_PARSING_API~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f852425d1b0c467190dbc58a5ded51f4c8931e3;p=php Fixed other protos. --- diff --git a/ext/standard/head.c b/ext/standard/head.c index 1dab1621f3..7fe5bd4ce8 100644 --- a/ext/standard/head.c +++ b/ext/standard/head.c @@ -35,8 +35,8 @@ /* 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; @@ -71,8 +71,8 @@ PHPAPI int php_header() /* 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; @@ -177,7 +177,7 @@ PHP_FUNCTION(setcookie) /* {{{ 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) {