]> granicus.if.org Git - php/commitdiff
Fixed other protos.
authorEgon Schmid <eschmid@php.net>
Fri, 19 Oct 2001 19:21:28 +0000 (19:21 +0000)
committerEgon Schmid <eschmid@php.net>
Fri, 19 Oct 2001 19:21:28 +0000 (19:21 +0000)
ext/standard/head.c

index 1dab1621f32080eb449223dd6cce3bef2b86c533..7fe5bd4ce8038944b8d639011fd88c5462a58ff0 100644 (file)
@@ -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) {