aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-14 17:39:17 -0700
committerfriendica <info@friendica.com>2012-06-14 17:39:17 -0700
commit8c94fa23bfebf6d6b9930ed83a86e9cdae55d28f (patch)
tree3be6ca812b7c1459d09901d41606776d0279de27 /boot.php
parent2efee75557bafc32b20be1cceac047fdeea3bb71 (diff)
parent244d7f9a8f3921d4c15812ce6f57a2c0e882e2fa (diff)
downloadvolse-hubzilla-8c94fa23bfebf6d6b9930ed83a86e9cdae55d28f.tar.gz
volse-hubzilla-8c94fa23bfebf6d6b9930ed83a86e9cdae55d28f.tar.bz2
volse-hubzilla-8c94fa23bfebf6d6b9930ed83a86e9cdae55d28f.zip
Merge https://github.com/friendica/friendica into pull
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index 631a3f7b8..60ab069cd 100644
--- a/boot.php
+++ b/boot.php
@@ -1577,3 +1577,30 @@ function zrl($s,$force = false) {
return $s . $achar . 'zrl=' . urlencode($mine);
return $s;
}
+
+/**
+* returns querystring as string from a mapped array
+*
+* @param params Array
+* @return string
+*/
+function build_querystring($params, $name=null) {
+ $ret = "";
+ foreach($params as $key=>$val) {
+ if(is_array($val)) {
+ if($name==null) {
+ $ret .= build_querystring($val, $key);
+ } else {
+ $ret .= build_querystring($val, $name."[$key]");
+ }
+ } else {
+ $val = urlencode($val);
+ if($name!=null) {
+ $ret.=$name."[$key]"."=$val&";
+ } else {
+ $ret.= "$key=$val&";
+ }
+ }
+ }
+ return $ret;
+}