From 96cb0e4be6dcfd7ef69e09e67d671445b40d3de4 Mon Sep 17 00:00:00 2001
From: Michael Wallner
Date: Mon, 30 Jan 2006 20:48:26 +0000
Subject: [PATCH] update
---
docs/functions.html | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/docs/functions.html b/docs/functions.html
index 328d337..808a435 100644
--- a/docs/functions.html
+++ b/docs/functions.html
@@ -540,21 +540,19 @@ should also contain any parent messages.
http_querystring_object.c
HttpQueryString
-void HttpQueryString::__construct([bool global = true])
+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()
+string HttpQueryString::toString()
Returns the string representation.
+array HttpQueryString::toArray()
+Returns the array representation.
mixed HttpQueryString::get([string key[, mixed type = 0[, mixed defval = NULL[, bool delete = false]]]])
Get (part of) the query string.
The type parameter is either one of the HttpQueryString::TYPE_* constants or a type abbreviation like
"b" for bool, "i" for int, "f" for float, "s" for string, "a" for array and "o" for a stdClass object.
-string HttpQueryString::set(string name, mixed value)
-Set a query string entry.
-string HttpQueryString::del(mixed param)
-Deletes entry/entries from the query string.
-string HttpQueryString::mod(array params)
-Modifies the query string according to params. NULL values will unset the variable.
+string HttpQueryString::set(mixed params)
+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).
@@ -1184,11 +1182,10 @@ http.cache_log is set.
http_querystring_object.c
@@ -1300,7 +1297,7 @@ http.cache_log is set.
- Generated at: Mon, 30 Jan 2006 18:56:09 +0100
+ Generated at: Mon, 30 Jan 2006 21:47:53 +0100