X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_functions.c;h=bab0e43b5908866f9c97016dc0cd6b43ecfde6ba;hp=f1b991d18ce375c0a9200e205102752d28dfd59b;hb=a268ede6ed45dc674906efd6fc8710012841e75e;hpb=c00621939ec351c74846b367765ddac4d3955eb9 diff --git a/http_functions.c b/http_functions.c index f1b991d..bab0e43 100644 --- a/http_functions.c +++ b/http_functions.c @@ -630,7 +630,7 @@ PHP_FUNCTION(http_parse_headers) if (rnrn = strstr(header, HTTP_CRLF HTTP_CRLF)) { header_len = rnrn - header + 2; } - if (SUCCESS != http_parse_headers(header, header_len, return_value)) { + if (SUCCESS != http_parse_headers(header, header_len, Z_ARRVAL_P(return_value))) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse HTTP header"); zval_dtor(return_value); RETURN_FALSE; @@ -643,9 +643,7 @@ PHP_FUNCTION(http_parse_headers) */ PHP_FUNCTION(http_get_request_headers) { - if (ZEND_NUM_ARGS()) { - WRONG_PARAM_COUNT; - } + NO_ARGS; array_init(return_value); http_get_request_headers(return_value); @@ -682,9 +680,9 @@ PHP_FUNCTION(http_get_request_headers) * - cookies: array, list of cookies as associative array * like array("cookie" => "value") * - cookiestore: string, path to a file where cookies are/will be stored - * - resume: int, byte offset to start the download from; + * - resume: int, byte offset to start the download from; * if the server supports ranges - * - maxfilesize: int, maximum file size that should be downloaded; + * - maxfilesize: int, maximum file size that should be downloaded; * has no effect, if the size of the requested entity is not known * - lastmodified: int, timestamp for If-(Un)Modified-Since header * - timeout: int, seconds the request may take @@ -899,7 +897,6 @@ PHP_FUNCTION(http_auth_basic) * } * return false; * } - * * if (!http_auth_basic_cb('auth_cb')) { * die('

Authorization failed

'); * }