From: Michael Wallner
Date: Thu, 24 Mar 2005 17:03:40 +0000 (+0000)
Subject: * update
X-Git-Tag: RELEASE_0_7_0~1
X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=0f630c2603d758b77b4eb939f5c954d5149b369f;p=m6w6%2Fext-http
* update
---
diff --git a/docs/functions.html b/docs/functions.html
index dc97a61..641db09 100644
--- a/docs/functions.html
+++ b/docs/functions.html
@@ -219,7 +219,7 @@ See http_get() for a full list of available options.
-string http_build_query(mixed formdata [, string prefix])
+string http_build_query(mixed formdata [, string prefix[, string arg_separator]])
Generates a form-encoded query string from an associative array or object.
http_methods.c
@@ -299,10 +299,24 @@ and POST (including posting files) HTTP requests.
Get current set options.
void HttpRequest::unsetOptions()
Unset all options/headers/cookies.
-
-Add (a) request header name/value pair(s).
-bool HttpRequest::addCookie(array cookie)
-Add (a) cookie(s).
+bool HttpRequest::setSslOptions(array options)
+Set additional SSL options.
+array HttpRequest::getSslOtpions()
+Get previously set SSL options.
+void HttpRequest::unsetSslOptions()
+Unset previously set SSL options.
+
+Add request header name/value pairs.
+
+Get previously set request headers.
+
+Unset previously set request headers.
+bool HttpRequest::addCookies(array cookies)
+Add cookies.
+array HttpRequest::getCookies()
+Get previously set cookies.
+void HttpRequest::unsetCookies()
+
bool HttpRequest::setURL(string url)
Set the request URL.
string HttpRequest::getUrl()
@@ -351,8 +365,10 @@ Affects only POST requests.
Affects only POST requests.
array HttpRequest::getResponseData()
Get all response data after the request has been sent.
-
+
Get response header(s) after the request has been sent.
+array HttpRequest::getResponseCookie([string name])
+Get response cookie(s) after the request has been sent.
string HttpRequest::getResponseBody()
Get the response body after the request has been sent.
int HttpRequest::getResponseCode()
@@ -373,7 +389,7 @@ GET example:
- Generated at: Tue, 22 Mar 2005 15:41:10 +0100
+ Generated at: Thu, 24 Mar 2005 18:02:15 +0100