X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http_functions.c;h=2e72ab853dafcf82ebfab327ff56703b9f059adf;hb=d1ae8375420c406fdbb47f8347c6b75230668f09;hp=010c0a249b2fcdd65042f544825be2e44f774f00;hpb=ea31ba145c26e01b14c8aaf49ee487a118a456a8;p=m6w6%2Fext-http diff --git a/http_functions.c b/http_functions.c index 010c0a2..2e72ab8 100644 --- a/http_functions.c +++ b/http_functions.c @@ -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,6 +680,13 @@ 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; + * if the server supports ranges + * - 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 + * - connecttimeout: int, seconds the connect may take * * * The optional third parameter will be filled with some additional information @@ -892,7 +897,6 @@ PHP_FUNCTION(http_auth_basic) * } * return false; * } - * * if (!http_auth_basic_cb('auth_cb')) { * die('

Authorization failed

'); * }