mdref.json config
[mdref/mdref-http] / http / QueryString.md
1 # class http\QueryString implements Serializable, ArrayAccess, IteratorAggregate
2
3 The http\QueryString class provides versatile facilities to retrieve, use and manipulate query strings and form data.
4
5 ## Constants:
6
7 * TYPE_BOOL
8 Cast requested value to bool.
9 * TYPE_INT
10 Cast requested value to int.
11 * TYPE_FLOAT
12 Cast requested value to float.
13 * TYPE_STRING
14 Cast requested value to string.
15 * TYPE_ARRAY
16 Cast requested value to an array.
17 * TYPE_OBJECT
18 Cast requested value to an object.
19
20
21 ## Properties:
22
23 * private http\QueryString $instance = NULL
24 The global instance. See http\QueryString::getGlobalInstance().
25 * private array $queryArray = NULL
26 The data.
27
28