From 5bf21b22dcc28e60dca9dc4637520ee0cb9f565d Mon Sep 17 00:00:00 2001
From: Michael Wallner
Date: Mon, 20 Feb 2006 16:43:48 +0000
Subject: [PATCH] - release .24
---
docs/functions.html | 15 +++++++++++++--
package.xml | 13 ++++++++++---
package2.xml | 10 ++++++----
php_http.h | 2 +-
4 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/docs/functions.html b/docs/functions.html
index 7871ba1..02b4840 100644
--- a/docs/functions.html
+++ b/docs/functions.html
@@ -600,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()
@@ -615,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
@@ -1247,6 +1255,9 @@ http.cache_log is set.
HttpQueryString::get()
HttpQueryString::set()
HttpQueryString::getInstance()
+HttpQueryString::iconv()
+HttpQueryString::serialize()
+HttpQueryString::unserialize()
@@ -1358,7 +1369,7 @@ http.cache_log is set.
- Generated at: Fri, 17 Feb 2006 17:34:44 +0100
+ Generated at: Mon, 20 Feb 2006 17:41:32 +0100