QueryString
[mdref/mdref-http] / http / QueryString / getString.md
diff --git a/http/QueryString/getString.md b/http/QueryString/getString.md
new file mode 100644 (file)
index 0000000..f29d0d2
--- /dev/null
@@ -0,0 +1,18 @@
+# string http\QueryString::getString(string $name[, mixed $defval = NULL[, bool $delete = false)
+
+Retrieve a string value with at offset $name.
+
+## Params:
+
+* string $name  
+  The key to look up.
+* Optional mixed $defval = NULL  
+  The default value to return if the offset $name does not exist.
+* Optional bool $delete = false  
+  Whether to remove the key and value from the querystring after retrieval.
+  
+## Returns:
+
+* string, the (casted) value.
+* mixed, $defval if offset $name does not exist.
+