summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/standard/head.c10
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) {