diff options
author | Egon Schmid <eschmid@php.net> | 2001-10-19 19:21:28 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2001-10-19 19:21:28 +0000 |
commit | 1f852425d1b0c467190dbc58a5ded51f4c8931e3 (patch) | |
tree | 0dc63491dda2955e9f790a54702ef7d1647191d7 /ext/standard/head.c | |
parent | 86bd61aace68fda5661b0d557857b67038b49bbf (diff) | |
download | php-git-1f852425d1b0c467190dbc58a5ded51f4c8931e3.tar.gz |
Fixed other protos.
Diffstat (limited to 'ext/standard/head.c')
-rw-r--r-- | ext/standard/head.c | 10 |
1 files changed, 5 insertions, 5 deletions
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) { |