X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Ffunctions.html;h=02b48406b0cbcfd56f95dc0ab6bb3dd104e4d8f7;hb=5bf21b22dcc28e60dca9dc4637520ee0cb9f565d;hp=cca7dc41edede005dd153b669d52b5582f6011ca;hpb=24b00d45e94aef314ccee09a090609bd8a540926;p=m6w6%2Fext-http diff --git a/docs/functions.html b/docs/functions.html index cca7dc4..02b4840 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -326,6 +326,7 @@ array where the following keys will be recognized:

 - redirect:
  - encodecookies:    bool, whether to urlencode the cookies (default: true)
- resetcookies: bool, wheter to reset the cookies
- cookiestore: string, path to a file where cookies are/will be stored
+ - cookiesession: bool, accept (true) or reset (false) sessioncookies
- resume: int, byte offset to start the download from;
if the server supports ranges
- maxfilesize: int, maximum file size that should be downloaded;
@@ -335,6 +336,8 @@ array where the following keys will be recognized:

 - redirect:
  - timeout:          int, seconds the request may take
- connecttimeout: int, seconds the connect may take
- onprogress: mixed, progress callback
+ - interface: string, outgoing network interface (ifname, ip or hostname)
+ - portrange: array, 2 integers specifying outgoing portrange to try
- ssl: array, with the following options:
cert: string, path to certificate
certtype: string, type of certificate
@@ -597,7 +600,7 @@ should also contain any parent messages.


http_querystring_object.c

HttpQueryString

-

void HttpQueryString::__construct([bool global = true[, mixed add])

+

final void HttpQueryString::__construct([bool global = true[, mixed add])

Creates a new HttpQueryString object instance.
Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.

string HttpQueryString::toString()

@@ -612,6 +615,14 @@ Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.Set query string entry/entries. NULL values will unset the variable.

HttpQueryString HttpQueryString::getInstance([bool global = true])

Get a single instance (differentiates between the global setting).

+

bool HttpQueryString::iconv(string ie, string oe)

+

Converts the query string from the source encoding ie to the target encoding oe.
+WARNING: Don't use any character set that can contain NUL bytes like UTF-16.

+

Returns TRUE on success or FALSE on failure.

+

string HttpQueryString::serialize()

+

Implements Serializable.

+

void HttpQueryString::unserialize(string serialized)

+

Implements Serializable.


http_request_object.c

HttpRequest

@@ -1244,6 +1255,9 @@ http.cache_log is set.

  • HttpQueryString::get()
  • HttpQueryString::set()
  • HttpQueryString::getInstance()
  • +
  • HttpQueryString::iconv()
  • +
  • HttpQueryString::serialize()
  • +
  • HttpQueryString::unserialize()
  • @@ -1355,7 +1369,7 @@ http.cache_log is set.

    -

    Generated at: Wed, 15 Feb 2006 08:40:01 +0100

    +

    Generated at: Mon, 20 Feb 2006 17:41:32 +0100