X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=docs%2Ffunctions.html;fp=docs%2Ffunctions.html;h=c3d2aadd6a26730de960b078d1fa091005377dc2;hp=b939e06fb1ae8d59b054f759c52e395bea90f429;hb=14bee6bccd8fbaf61786b6e3936d85a71bd97f82;hpb=16c91f9f50ef056c6c398cd1467b3fd40bac840d diff --git a/docs/functions.html b/docs/functions.html index b939e06..c3d2aad 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -644,6 +644,12 @@ Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.

string HttpQueryString::set(mixed params)

Set query string entry/entries. NULL values will unset the variable.

+

HttpQueryString HttpQueryString::mod(mixed params)

+

Copies the query string object and sets provided params at the clone.
+This is basically shorthand for:


+<?php
$newQS 
= new HttpQueryString(false$oldQS);
$newQS->set($other_params);
?>
+

+

static HttpQueryString HttpQueryString::singleton([bool global = true])

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

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

@@ -1322,6 +1328,7 @@ http.cache_log is set.

  • HttpQueryString::toArray()
  • HttpQueryString::get()
  • HttpQueryString::set()
  • +
  • HttpQueryString::mod()
  • HttpQueryString::singleton()
  • HttpQueryString::xlate()
  • HttpQueryString::serialize()
  • @@ -1442,7 +1449,7 @@ http.cache_log is set.

    -

    Generated at: Thu, 08 Jun 2006 23:59:56 +0200

    +

    Generated at: Thu, 06 Jul 2006 20:17:57 +0200