summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-29 23:58:45 +0200
committerTheTroll <trolldev@gmail.com>2010-03-29 23:58:45 +0200
commitc49a7c4e5a2e3151a852bae13d3c6d4c9b72a3b3 (patch)
treee6e3f68f9f0bc930c98266212e6684b80c099172 /bin
parentd2b0e0bfc35e32a35eefb5c826548d622191c4bc (diff)
downloadistreamdev-c49a7c4e5a2e3151a852bae13d3c6d4c9b72a3b3.tar.gz
istreamdev-c49a7c4e5a2e3151a852bae13d3c6d4c9b72a3b3.tar.bz2
Json function in case its not in apache
Diffstat (limited to 'bin')
-rw-r--r--bin/utils.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/bin/utils.php b/bin/utils.php
index 4fe3484..2324032 100644
--- a/bin/utils.php
+++ b/bin/utils.php
@@ -136,5 +136,50 @@ function isurlvalid($url, $type)
return 1;
}
+if (!function_exists('json_encode'))
+{
+ function json_encode($a=false)
+ {
+ if (is_null($a)) return 'null';
+ if ($a === false) return 'false';
+ if ($a === true) return 'true';
+ if (is_scalar($a))
+ {
+ if (is_float($a))
+ {
+ // Always use "." for floats.
+ return floatval(str_replace(",", ".", strval($a)));
+ }
+
+ if (is_string($a))
+ {
+ static $jsonReplaces = array(array("\\", "/", "\n", "\t", "\r", "\b", "\f", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"'));
+ return '"' . str_replace($jsonReplaces[0], $jsonReplaces[1], $a) . '"';
+ }
+ else
+ return $a;
+ }
+ $isList = true;
+ for ($i = 0, reset($a); $i < count($a); $i++, next($a))
+ {
+ if (key($a) !== $i)
+ {
+ $isList = false;
+ break;
+ }
+ }
+ $result = array();
+ if ($isList)
+ {
+ foreach ($a as $v) $result[] = json_encode($v);
+ return '[' . join(',', $result) . ']';
+ }
+ else
+ {
+ foreach ($a as $k => $v) $result[] = json_encode($k).':'.json_encode($v);
+ return '{' . join(',', $result) . '}';
+ }
+ }
+}
?>